Home
last modified time | relevance | path

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

/external/skia/src/gpu/ganesh/d3d/
DGrD3DCaps.cpp763 fColorSampleCounts.push_back(1); in initSampleCounts()
775 fColorSampleCounts.push_back(2); in initSampleCounts()
778 fColorSampleCounts.push_back(4); in initSampleCounts()
781 fColorSampleCounts.push_back(8); in initSampleCounts()
784 fColorSampleCounts.push_back(16); in initSampleCounts()
880 int count = info.fColorSampleCounts.size(); in getRenderTargetSampleCount()
887 SkASSERT(info.fColorSampleCounts.size() && info.fColorSampleCounts[0] == 1); in getRenderTargetSampleCount()
892 if (info.fColorSampleCounts[i] >= requestedCount) { in getRenderTargetSampleCount()
893 return info.fColorSampleCounts[i]; in getRenderTargetSampleCount()
910 const auto& table = info.fColorSampleCounts; in maxRenderTargetSampleCount()
DGrD3DCaps.h189 SkTDArray<int> fColorSampleCounts; member
/external/skia/src/gpu/ganesh/vk/
DGrVkCaps.cpp1511 fColorSampleCounts.push_back(1); in initSampleCounts()
1525 fColorSampleCounts.push_back(2); in initSampleCounts()
1528 fColorSampleCounts.push_back(4); in initSampleCounts()
1531 fColorSampleCounts.push_back(8); in initSampleCounts()
1534 fColorSampleCounts.push_back(16); in initSampleCounts()
1648 int count = info.fColorSampleCounts.size(); in getRenderTargetSampleCount()
1655 SkASSERT(!info.fColorSampleCounts.empty() && info.fColorSampleCounts[0] == 1); in getRenderTargetSampleCount()
1660 if (info.fColorSampleCounts[i] >= requestedCount) { in getRenderTargetSampleCount()
1661 return info.fColorSampleCounts[i]; in getRenderTargetSampleCount()
1678 const auto& table = info.fColorSampleCounts; in maxRenderTargetSampleCount()
DGrVkCaps.h464 SkTDArray<int> fColorSampleCounts; member
/external/skia/src/gpu/graphite/mtl/
DMtlCaps.h157 std::vector<uint32_t> fColorSampleCounts; variable
DMtlCaps.mm183 fColorSampleCounts.push_back(1);
188 fColorSampleCounts.push_back(sampleCnt);
1140 return fColorSampleCounts[fColorSampleCounts.size() - 1];
/external/skia/src/gpu/ganesh/gl/
DGrGLCaps.cpp3611 fFormatTable[i].fColorSampleCounts.reserve(count + 1); in setupSampleCounts()
3614 fFormatTable[i].fColorSampleCounts.push_back(1); in setupSampleCounts()
3626 fFormatTable[i].fColorSampleCounts.push_back(sampleCnt); in setupSampleCounts()
3640 fFormatTable[i].fColorSampleCounts.append(count, kDefaultSamples); in setupSampleCounts()
3644 fFormatTable[i].fColorSampleCounts.resize(1); in setupSampleCounts()
3645 fFormatTable[i].fColorSampleCounts[0] = 1; in setupSampleCounts()
5071 int count = info.fColorSampleCounts.size(); in getRenderTargetSampleCount()
5078 return info.fColorSampleCounts[0] == 1 ? 1 : 0; in getRenderTargetSampleCount()
5081 for (int sampleCount : info.fColorSampleCounts) { in getRenderTargetSampleCount()
5094 const auto& table = info.fColorSampleCounts; in maxRenderTargetSampleCount()
DGrGLCaps.h827 SkTDArray<int> fColorSampleCounts; member