IGraphicBufferAlloc.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * Copyright (C) 2011 The Android Open Source Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef ANDROID_GUI_IGRAPHIC_BUFFER_ALLOC_H
  17. #define ANDROID_GUI_IGRAPHIC_BUFFER_ALLOC_H
  18. #include <stdint.h>
  19. #include <sys/types.h>
  20. #include <binder/IInterface.h>
  21. #include <ui/PixelFormat.h>
  22. #include <utils/RefBase.h>
  23. namespace android {
  24. // ----------------------------------------------------------------------------
  25. class GraphicBuffer;
  26. class IGraphicBufferAlloc : public IInterface
  27. {
  28. public:
  29. DECLARE_META_INTERFACE(GraphicBufferAlloc);
  30. /* Create a new GraphicBuffer for the client to use.
  31. */
  32. virtual sp<GraphicBuffer> createGraphicBuffer(uint32_t w, uint32_t h,
  33. PixelFormat format, uint32_t usage, status_t* error) = 0;
  34. };
  35. // ----------------------------------------------------------------------------
  36. class BnGraphicBufferAlloc : public BnInterface<IGraphicBufferAlloc>
  37. {
  38. public:
  39. virtual status_t onTransact(uint32_t code,
  40. const Parcel& data,
  41. Parcel* reply,
  42. uint32_t flags = 0);
  43. };
  44. // ----------------------------------------------------------------------------
  45. }; // namespace android
  46. #endif // ANDROID_GUI_IGRAPHIC_BUFFER_ALLOC_H