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

  /hardware/intel/img/hwcomposer/merrifield/include/
GraphicBuffer.h 25 class GraphicBuffer : public DataBuffer {
32 GraphicBuffer(buffer_handle_t handle);
33 virtual ~GraphicBuffer() {}
41 static bool isProtectedBuffer(GraphicBuffer *buffer);
44 static bool isCompressionBuffer(GraphicBuffer *buffer);
  /hardware/intel/img/hwcomposer/moorefield_hdmi/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/merrifield/common/buffers/
GraphicBuffer.cpp 17 #include <GraphicBuffer.h>
22 GraphicBuffer::GraphicBuffer(buffer_handle_t handle)
28 void GraphicBuffer::resetBuffer(buffer_handle_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...]
  /hardware/intel/img/hwcomposer/moorefield_hdmi/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...]
  /external/deqp/framework/platform/android/
tcuAndroidInternals.cpp 49 GraphicBufferFunctions& gb = m_functions.graphicBuffer;
133 static android::android_native_base_t* getAndroidNativeBase (android::GraphicBuffer* gb)
175 static android::GraphicBuffer* createGraphicBuffer (const GraphicBufferFunctions& functions, NativeBaseFunctions& baseFunctions, deUint32 w, deUint32 h, PixelFormat format, deUint32 usage)
180 TCU_THROW(ResourceError, "Could not alloc for GraphicBuffer");
185 android::GraphicBuffer* const gb = callConstructor4<android::GraphicBuffer, deUint32, deUint32, PixelFormat, deUint32>(functions.constructor,
198 callDestructor<android::GraphicBuffer>(functions.destructor, gb);
199 TCU_THROW(NotSupportedError, ("GraphicBuffer ctor failed, initCheck returned " + de::toString(ctorStatus)).c_str());
208 TCU_THROW(NotSupportedError, "GraphicBuffer layout unexpected");
217 TCU_THROW(NotSupportedError, "GraphicBuffer version unexpected")
    [all...]
tcuAndroidInternals.hpp 37 class GraphicBuffer;
96 // ui/GraphicBuffer.h
100 typedef status_t (*initCheckFunc) (android::GraphicBuffer* buffer);
101 typedef status_t (*lockFunc) (android::GraphicBuffer* buffer, deUint32 usage, void** vaddr);
102 typedef status_t (*unlockFunc) (android::GraphicBuffer* buffer);
103 typedef ANativeWindowBuffer* (*getNativeBufferFunc) (const android::GraphicBuffer* buffer);
125 GraphicBufferFunctions graphicBuffer;
133 GraphicBufferFunctions graphicBuffer;
144 class GraphicBuffer
147 // ui/GraphicBuffer.h, hardware/gralloc.
    [all...]
  /frameworks/native/libs/ui/
GraphicBuffer.cpp 17 #define LOG_TAG "GraphicBuffer"
19 #include <ui/GraphicBuffer.h>
43 sp<GraphicBuffer> GraphicBuffer::from(ANativeWindowBuffer* anwb) {
44 return static_cast<GraphicBuffer *>(anwb);
47 GraphicBuffer::GraphicBuffer()
62 GraphicBuffer::GraphicBuffer(uint32_t inWidth, uint32_t inHeight,
64 : GraphicBuffer(inWidth, inHeight, inFormat, 1, static_cast<uint64_t>(inUsage), requestorName
    [all...]
  /frameworks/base/graphics/java/android/graphics/
GraphicBuffer.java 23 * Simple wrapper for the native GraphicBuffer class.
28 public class GraphicBuffer implements Parcelable {
29 // Note: keep usage flags in sync with GraphicBuffer.h and gralloc.h
62 // If set to true, this GraphicBuffer instance cannot be used anymore
66 * Creates new <code>GraphicBuffer</code> instance. This method will return null
74 * @return A <code>GraphicBuffer</code> instance or null
76 public static GraphicBuffer create(int width, int height, int format, int usage) {
79 return new GraphicBuffer(width, height, format, usage, nativeObject);
87 private GraphicBuffer(int width, int height, int format, int usage, long nativeObject) {
99 public static GraphicBuffer createFromExisting(int width, int height
    [all...]
  /frameworks/native/libs/ui/include/ui/
GraphicBuffer.h 41 // GraphicBuffer
44 class GraphicBuffer
45 : public ANativeObjectBase<ANativeWindowBuffer, GraphicBuffer, RefBase>,
46 public Flattenable<GraphicBuffer>
48 friend class Flattenable<GraphicBuffer>;
76 static sp<GraphicBuffer> from(ANativeWindowBuffer *);
79 // Create a GraphicBuffer to be unflatten'ed into or be reallocated.
80 GraphicBuffer();
82 // Create a GraphicBuffer by allocating and managing a buffer internally.
84 GraphicBuffer(uint32_t inWidth, uint32_t inHeight, PixelFormat inFormat
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-stubs.jar 

Completed in 607 milliseconds