Home
last modified time | relevance | path

Searched refs:fColorSampleCounts (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/src/gpu/d3d/
DGrD3DCaps.cpp730 fColorSampleCounts.push_back(1); in initSampleCounts()
742 fColorSampleCounts.push_back(2); in initSampleCounts()
745 fColorSampleCounts.push_back(4); in initSampleCounts()
748 fColorSampleCounts.push_back(8); in initSampleCounts()
751 fColorSampleCounts.push_back(16); in initSampleCounts()
847 int count = info.fColorSampleCounts.count(); in getRenderTargetSampleCount()
854 SkASSERT(info.fColorSampleCounts.count() && info.fColorSampleCounts[0] == 1); in getRenderTargetSampleCount()
859 if (info.fColorSampleCounts[i] >= requestedCount) { in getRenderTargetSampleCount()
860 return info.fColorSampleCounts[i]; in getRenderTargetSampleCount()
877 const auto& table = info.fColorSampleCounts; in maxRenderTargetSampleCount()
DGrD3DCaps.h189 SkTDArray<int> fColorSampleCounts; member
/third_party/skia/src/gpu/vk/
DGrVkCaps.cpp1383 fColorSampleCounts.push_back(1); in initSampleCounts()
1394 fColorSampleCounts.push_back(2); in initSampleCounts()
1397 fColorSampleCounts.push_back(4); in initSampleCounts()
1400 fColorSampleCounts.push_back(8); in initSampleCounts()
1403 fColorSampleCounts.push_back(16); in initSampleCounts()
1515 int count = info.fColorSampleCounts.count(); in getRenderTargetSampleCount()
1522 SkASSERT(info.fColorSampleCounts.count() && info.fColorSampleCounts[0] == 1); in getRenderTargetSampleCount()
1527 if (info.fColorSampleCounts[i] >= requestedCount) { in getRenderTargetSampleCount()
1528 return info.fColorSampleCounts[i]; in getRenderTargetSampleCount()
1545 const auto& table = info.fColorSampleCounts; in maxRenderTargetSampleCount()
DGrVkCaps.h369 SkTDArray<int> fColorSampleCounts; member
/third_party/skia/src/gpu/gl/
DGrGLCaps.cpp3289 fFormatTable[i].fColorSampleCounts.setCount(count+1); in setupSampleCounts()
3292 fFormatTable[i].fColorSampleCounts[0] = 1; in setupSampleCounts()
3297 fFormatTable[i].fColorSampleCounts[j+1] = SkPrevPow2(temp[count - j - 1]); in setupSampleCounts()
3299 fFormatTable[i].fColorSampleCounts[j+1] = temp[count - j - 1]; in setupSampleCounts()
3323 fFormatTable[i].fColorSampleCounts.append(count, kDefaultSamples); in setupSampleCounts()
3327 fFormatTable[i].fColorSampleCounts.setCount(1); in setupSampleCounts()
3328 fFormatTable[i].fColorSampleCounts[0] = 1; in setupSampleCounts()
4598 int count = info.fColorSampleCounts.count(); in getRenderTargetSampleCount()
4605 return info.fColorSampleCounts[0] == 1 ? 1 : 0; in getRenderTargetSampleCount()
4608 for (int sampleCount : info.fColorSampleCounts) { in getRenderTargetSampleCount()
[all …]
DGrGLCaps.h764 SkTDArray<int> fColorSampleCounts; member