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

  /frameworks/native/libs/ui/
GraphicBuffer.cpp 17 #define LOG_TAG "GraphicBuffer"
26 #include <ui/GraphicBuffer.h>
37 GraphicBuffer::GraphicBuffer()
48 GraphicBuffer::GraphicBuffer(uint32_t w, uint32_t h,
62 GraphicBuffer::GraphicBuffer(uint32_t w, uint32_t h,
77 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>;
70 GraphicBuffer();
73 GraphicBuffer(uint32_t w, uint32_t h, PixelFormat format, uint32_t usage);
76 GraphicBuffer(uint32_t w, uint32_t h, PixelFormat format, uint32_t usage,
80 GraphicBuffer(ANativeWindowBuffer* buffer, bool keepOwnership);
113 ~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, int nativeObject) {
220 * @return True if this <code>GraphicBuffer</code> is in a destroyed state
    [all...]

Completed in 96 milliseconds