Home | History | Annotate | Download | only in renderstate

Lines Matching refs:Entry

122     struct Entry {
123 Entry() {}
125 Entry(const uint32_t layerWidth, const uint32_t layerHeight)
129 Entry(OffscreenBuffer* layer)
135 static int compare(const Entry& lhs, const Entry& rhs);
137 bool operator==(const Entry& other) const {
141 bool operator!=(const Entry& other) const {
145 bool operator<(const Entry& other) const {
146 return Entry::compare(*this, other) < 0;
152 }; // struct Entry
154 std::multiset<Entry> mPool;