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

  /external/skia/src/gpu/
GrResourceProvider.cpp 52 int mipLevelCount, uint32_t flags,
59 if (mipLevelCount && !texels) {
62 for (int i = 0; i < mipLevelCount; ++i) {
67 if (mipLevelCount > 1 && GrPixelConfigIsSint(desc.fConfig)) {
75 if (mipLevelCount < 2) {
78 if (!mipLevelCount ||
92 SkTArray<GrMipLevel> texelsShallowCopy(mipLevelCount);
93 for (int i = 0; i < mipLevelCount; ++i) {
SkGr.cpp 224 const int mipLevelCount = mipmaps->countLevels() + 1;
225 if (mipLevelCount < 1) {
229 const bool isMipMapped = mipLevelCount > 1;
232 std::unique_ptr<GrMipLevel[]> texels(new GrMipLevel[mipLevelCount]);
237 for (int i = 1; i < mipLevelCount; ++i) {
247 mipLevelCount,
255 int mipLevelCount,
265 mipLevelCount, 0, colorMode));
GrResourceProvider.h 48 * @param mipLevelCount The amount of elements in the texels array
51 const GrMipLevel* texels, int mipLevelCount,
SkGr.h 232 int mipLevelCount,
  /external/skia/tests/
MipMapTest.cpp 65 const int mipLevelCount = mm->countLevels();
66 REPORTER_ASSERT(reporter, mipLevelCount == expectedMipLevelCount);
67 REPORTER_ASSERT(reporter, mipLevelCount == SkMipMap::ComputeLevelCount(width, height));
68 for (int i = 0; i < mipLevelCount; ++i) {
ResourceCacheTest.cpp     [all...]
  /external/skia/gm/
deferredtextureimage.cpp 88 int mipLevelCount = SkMipMap::ComputeLevelCount(image->width(), image->height());
112 for (int i = 0; i < mipLevelCount; i++) {
132 for (int i = 0; i < mipLevelCount; i++) {
  /external/skia/src/image/
SkImage_Gpu.cpp     [all...]
SkImage.cpp 328 int mipLevelCount, SkBudgeted, SkDestinationSurfaceColorMode) {
390 int mipLevelCount, SkBudgeted) {
  /external/skia/include/core/
SkImage.h 445 const GrMipLevel* texels, int mipLevelCount,
  /external/skia/src/core/
SkMipMap.cpp 598 int mipLevelCount = significantBits;
604 if (mipLevelCount > 0) {
605 --mipLevelCount;
608 return mipLevelCount;

Completed in 538 milliseconds