Searched defs:GraphicBuffer (Results 1 - 3 of 3) sorted by relevance
/frameworks/native/libs/ui/ |
H A D | GraphicBuffer.cpp | 17 #define LOG_TAG "GraphicBuffer" 26 #include <ui/GraphicBuffer.h> 44 GraphicBuffer::GraphicBuffer() function in class:android::GraphicBuffer 56 GraphicBuffer::GraphicBuffer(uint32_t inWidth, uint32_t inHeight, function in class:android::GraphicBuffer 70 GraphicBuffer::GraphicBuffer(uint32_t inWidth, uint32_t inHeight, function in class:android::GraphicBuffer 85 GraphicBuffer::GraphicBuffer(ANativeWindowBuffe function in class:android::GraphicBuffer [all...] |
/frameworks/base/core/java/android/view/ |
H A D | GraphicBuffer.java | 26 * Simple wrapper for the native GraphicBuffer class. 31 public class GraphicBuffer implements Parcelable { class in inherits: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) { method in class:GraphicBuffer 220 * @return True if this <code>GraphicBuffer</cod [all...] |
/frameworks/native/include/ui/ |
H A D | GraphicBuffer.h | 37 // GraphicBuffer 40 class GraphicBuffer class in namespace:android 41 : public ANativeObjectBase< ANativeWindowBuffer, GraphicBuffer, RefBase >, 42 public Flattenable<GraphicBuffer> 44 friend class Flattenable<GraphicBuffer>; 72 GraphicBuffer(); 75 GraphicBuffer(uint32_t inWidth, uint32_t inHeight, PixelFormat inFormat, 79 GraphicBuffer(uint32_t inWidth, uint32_t inHeight, PixelFormat inFormat, 84 GraphicBuffer(ANativeWindowBuffer* buffer, bool keepOwnership); 136 ~GraphicBuffer(); [all...] |
Completed in 99 milliseconds