HomeSort by relevance Sort by last modified time
    Searched defs:GraphicBuffer (Results 1 - 5 of 5) sorted by null

  /hardware/intel/img/hwcomposer/include/
GraphicBuffer.h 25 class GraphicBuffer : public DataBuffer {
32 GraphicBuffer(uint32_t handle);
33 virtual ~GraphicBuffer() {}
41 static bool isProtectedBuffer(GraphicBuffer *buffer);
44 static bool isCompressionBuffer(GraphicBuffer *buffer);
  /hardware/intel/img/hwcomposer/common/buffers/
GraphicBuffer.cpp 17 #include <GraphicBuffer.h>
22 GraphicBuffer::GraphicBuffer(uint32_t handle)
28 void GraphicBuffer::resetBuffer(uint32_t handle)
34 bool GraphicBuffer::isProtectedUsage(uint32_t usage)
43 bool GraphicBuffer::isProtectedBuffer(GraphicBuffer *buffer)
52 bool GraphicBuffer::isCompressionUsage(uint32_t usage)
61 bool GraphicBuffer::isCompressionBuffer(GraphicBuffer *buffer
    [all...]
  /frameworks/native/libs/ui/
GraphicBuffer.cpp 17 #define LOG_TAG "GraphicBuffer"
26 #include <ui/GraphicBuffer.h>
44 GraphicBuffer::GraphicBuffer()
56 GraphicBuffer::GraphicBuffer(uint32_t w, uint32_t h,
70 GraphicBuffer::GraphicBuffer(uint32_t w, uint32_t h,
85 GraphicBuffer::GraphicBuffer(ANativeWindowBuffer* buffer, bool keepOwnership
    [all...]
  /frameworks/native/include/ui/
GraphicBuffer.h 37 // GraphicBuffer
40 class GraphicBuffer
41 : public ANativeObjectBase< ANativeWindowBuffer, GraphicBuffer, RefBase >,
42 public Flattenable<GraphicBuffer>
44 friend class Flattenable<GraphicBuffer>;
72 GraphicBuffer();
75 GraphicBuffer(uint32_t w, uint32_t h, PixelFormat format, uint32_t usage);
78 GraphicBuffer(uint32_t w, uint32_t h, PixelFormat format, uint32_t usage,
82 GraphicBuffer(ANativeWindowBuffer* buffer, bool keepOwnership);
121 ~GraphicBuffer();
    [all...]
  /frameworks/base/core/java/android/view/
GraphicBuffer.java 26 * Simple wrapper for the native GraphicBuffer class.
31 public class GraphicBuffer implements Parcelable {
32 // Note: keep usage flags in sync with GraphicBuffer.h and gralloc.h
65 // If set to true, this GraphicBuffer instance cannot be used anymore
69 * Creates new <code>GraphicBuffer</code> instance. This method will return null
77 * @return A <code>GraphicBuffer</code> instance or null
79 public static GraphicBuffer create(int width, int height, int format, int usage) {
82 return new GraphicBuffer(width, height, format, usage, nativeObject);
90 private GraphicBuffer(int width, int height, int format, int usage, long nativeObject) {
220 * @return True if this <code>GraphicBuffer</code> is in a destroyed state
    [all...]

Completed in 741 milliseconds