HomeSort by relevance Sort by last modified time
    Searched refs:fTexCount (Results 1 - 4 of 4) sorted by null

  /external/skia/include/utils/
SkMeshUtils.h 26 size_t texCount() const { return fTexCount; }
30 size_t fIndexCount, fTexCount;
  /external/skia/src/utils/
SkMeshUtils.cpp 20 fTexCount = fIndexCount = 0;
27 fTexCount = rows * cols;
36 fStorage = sk_malloc_throw(fTexCount * sizeof(SkPoint) +
39 fIndices = (uint16_t*)(fTex + fTexCount);
  /external/skia/src/gl/
SkTextureCache.cpp 24 fTexCount(0), fTexSize(0) {
57 fTexCount = 0;
157 fTexCount += 1;
228 if (fTexCount <= countMax && fTexSize <= sizeMax) {
239 fTexCount -= 1;
296 if (0 == fTexCount) {
309 if (1 == fTexCount) {
319 SkASSERT(count < fTexCount);
328 SkASSERT(count == fTexCount);
335 SkASSERT(count < fTexCount);
    [all...]
SkTextureCache.h 142 size_t fTexCount;

Completed in 150 milliseconds