Home
last modified time | relevance | path

Searched refs:GrTexturable (Results 1 – 7 of 7) sorted by relevance

/external/skia/src/gpu/d3d/
DGrD3DGpu.cpp1070 GrTexturable texturable, in createTextureResourceForBackendSurface()
1076 SkASSERT(texturable == GrTexturable::kYes || renderable == GrRenderable::kYes); in createTextureResourceForBackendSurface()
1082 if (texturable == GrTexturable::kYes && !this->d3dCaps().isFormatTexturable(dxgiFormat)) { in createTextureResourceForBackendSurface()
1160 if (!this->createTextureResourceForBackendSurface(dxgiFormat, dimensions, GrTexturable::kYes, in onCreateBackendTexture()
1410 if (!this->createTextureResourceForBackendSurface(dxgiFormat, dimensions, GrTexturable::kNo, in createTestingOnlyBackendRenderTarget()
DGrD3DGpu.h264 GrTexturable texturable,
/external/skia/src/gpu/vk/
DGrVkGpu.cpp1519 GrTexturable texturable, in createVkImageForBackendSurface()
1524 SkASSERT(texturable == GrTexturable::kYes || renderable == GrRenderable::kYes); in createVkImageForBackendSurface()
1530 if (texturable == GrTexturable::kYes && !fVkCaps->isVkFormatTexturable(vkFormat)) { in createVkImageForBackendSurface()
1535 if (sampleCnt > 1 && (texturable == GrTexturable::kYes || renderable == GrRenderable::kNo)) { in createVkImageForBackendSurface()
1554 if (texturable == GrTexturable::kYes) { in createVkImageForBackendSurface()
1665 if (!this->createVkImageForBackendSurface(vkFormat, dimensions, 1, GrTexturable::kYes, in onCreateBackendTexture()
1953 if (!this->createVkImageForBackendSurface(vkFormat, dimensions, sampleCnt, GrTexturable::kNo, in createTestingOnlyBackendRenderTarget()
DGrVkGpu.h348 GrTexturable,
/external/skia/src/gpu/mtl/
DGrMtlGpu.h253 GrTexturable,
DGrMtlGpu.mm887 GrTexturable texturable,
891 SkASSERT(texturable == GrTexturable::kYes || renderable == GrRenderable::kYes);
893 if (texturable == GrTexturable::kYes && !fMtlCaps->isFormatTexturable(mtlFormat)) {
913 MTLTextureUsage usage = texturable == GrTexturable::kYes ? MTLTextureUsageShaderRead : 0;
934 if (!this->createMtlTextureForBackendSurface(mtlFormat, dimensions, 1, GrTexturable::kYes,
1033 if (!this->createMtlTextureForBackendSurface(mtlFormat, dimensions, 1, GrTexturable::kYes,
1183 if (!this->createMtlTextureForBackendSurface(format, dimensions, sampleCnt, GrTexturable::kNo,
/external/skia/include/private/
DGrTypesPriv.h72 enum class GrTexturable : bool { enum