Lines Matching refs:RenderBufferEntry
79 struct RenderBufferEntry { struct
80 RenderBufferEntry(): in RenderBufferEntry() function
84 RenderBufferEntry(GLenum format, const uint32_t width, const uint32_t height): in RenderBufferEntry() function
88 RenderBufferEntry(RenderBuffer* buffer): in RenderBufferEntry() function
93 static int compare(const RenderBufferEntry& lhs, const RenderBufferEntry& rhs);
95 bool operator==(const RenderBufferEntry& other) const {
99 bool operator!=(const RenderBufferEntry& other) const {
103 friend inline int strictly_order_type(const RenderBufferEntry& lhs, in strictly_order_type() argument
104 const RenderBufferEntry& rhs) { in strictly_order_type()
105 return RenderBufferEntry::compare(lhs, rhs) < 0; in strictly_order_type()
108 friend inline int compare_type(const RenderBufferEntry& lhs, in compare_type() argument
109 const RenderBufferEntry& rhs) { in compare_type()
110 return RenderBufferEntry::compare(lhs, rhs); in compare_type()
121 SortedList<RenderBufferEntry> mCache;