Home | History | Annotate | Download | only in hwui

Lines Matching refs:RenderBufferEntry

76     struct RenderBufferEntry {
77 RenderBufferEntry():
81 RenderBufferEntry(GLenum format, const uint32_t width, const uint32_t height):
85 RenderBufferEntry(RenderBuffer* buffer):
90 static int compare(const RenderBufferEntry& lhs, const RenderBufferEntry& rhs);
92 bool operator==(const RenderBufferEntry& other) const {
96 bool operator!=(const RenderBufferEntry& other) const {
100 bool operator<(const RenderBufferEntry& other) const {
101 return RenderBufferEntry::compare(*this, other) < 0;
108 }; // struct RenderBufferEntry
112 std::multiset<RenderBufferEntry> mCache;