Lines Matching refs:GrGLuint
27 GrGLuint first() const { return fFirst; } in first()
34 GrGLuint end() const { return fEnd; } in end()
42 GrGLuint height() const { return fHeight; } in height()
56 virtual SparseNameRange* SK_WARN_UNUSED_RESULT internalAllocate(GrGLuint* outName) = 0;
73 …virtual SparseNameRange* SK_WARN_UNUSED_RESULT removeLeftmostContiguousRange(GrGLuint* removedCoun…
83 virtual GrGLuint appendNames(GrGLuint count) = 0;
94 virtual GrGLuint prependNames(GrGLuint count) = 0;
109 virtual SparseNameRange* SK_WARN_UNUSED_RESULT free(GrGLuint name) = 0;
117 GrGLuint fFirst;
118 GrGLuint fEnd;
119 GrGLuint fHeight;
136 SparseNameRange* SK_WARN_UNUSED_RESULT internalAllocate(GrGLuint* outName) override { in internalAllocate()
146 GrGLuint removedCount; in internalAllocate()
163 …SparseNameRange* SK_WARN_UNUSED_RESULT removeLeftmostContiguousRange(GrGLuint* removedCount) overr… in removeLeftmostContiguousRange()
172 GrGLuint appendNames(GrGLuint count) override { in appendNames()
174 GrGLuint name = fRight->appendNames(count); in appendNames()
180 GrGLuint prependNames(GrGLuint count) override { in prependNames()
182 GrGLuint name = fLeft->prependNames(count); in prependNames()
188 SparseNameRange* SK_WARN_UNUSED_RESULT free(GrGLuint name) override { in free()
276 ContiguousNameRange(GrGLuint first, GrGLuint end) { in ContiguousNameRange()
283 SparseNameRange* SK_WARN_UNUSED_RESULT internalAllocate(GrGLuint* outName) override { in internalAllocate()
288 …SparseNameRange* SK_WARN_UNUSED_RESULT removeLeftmostContiguousRange(GrGLuint* removedCount) overr… in removeLeftmostContiguousRange()
293 GrGLuint appendNames(GrGLuint count) override { in appendNames()
295 GrGLuint name = fEnd; in appendNames()
300 GrGLuint prependNames(GrGLuint count) override { in prependNames()
306 SparseNameRange* SK_WARN_UNUSED_RESULT free(GrGLuint name) override { in free()
329 GrGLNameAllocator::GrGLNameAllocator(GrGLuint firstName, GrGLuint endName) in GrGLNameAllocator()
339 GrGLuint GrGLNameAllocator::allocateName() { in allocateName()
349 GrGLuint name; in allocateName()
363 void GrGLNameAllocator::free(GrGLuint name) { in free()