Searched defs:RenderBufferEntry (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/libs/hwui/
H A DRenderBufferCache.h76 struct RenderBufferEntry { struct in class:android::uirenderer::RenderBufferCache
77 RenderBufferEntry() : mBuffer(nullptr), mWidth(0), mHeight(0) {} function in struct:android::uirenderer::RenderBufferCache::RenderBufferEntry
79 RenderBufferEntry(GLenum format, const uint32_t width, const uint32_t height) function in struct:android::uirenderer::RenderBufferCache::RenderBufferEntry
82 explicit RenderBufferEntry(RenderBuffer* buffer) function in struct:android::uirenderer::RenderBufferCache::RenderBufferEntry
88 static int compare(const RenderBufferEntry& lhs, const RenderBufferEntry& rhs);
90 bool operator==(const RenderBufferEntry& other) const { return compare(*this, other) == 0; }
92 bool operator!=(const RenderBufferEntry& other) const { return compare(*this, other) != 0; }
94 bool operator<(const RenderBufferEntry& other) const {
95 return RenderBufferEntry
[all...]

Completed in 74 milliseconds