Home
last modified time | relevance | path

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

/third_party/skia/src/gpu/vk/
DGrVkGpu.cpp1541 GrTexturable texturable, in createVkImageForBackendSurface()
1546 SkASSERT(texturable == GrTexturable::kYes || renderable == GrRenderable::kYes); in createVkImageForBackendSurface()
1552 if (texturable == GrTexturable::kYes && !fVkCaps->isVkFormatTexturable(vkFormat)) { in createVkImageForBackendSurface()
1557 if (sampleCnt > 1 && (texturable == GrTexturable::kYes || renderable == GrRenderable::kNo)) { in createVkImageForBackendSurface()
1576 if (texturable == GrTexturable::kYes) { in createVkImageForBackendSurface()
1689 if (!this->createVkImageForBackendSurface(vkFormat, dimensions, 1, GrTexturable::kYes, in onCreateBackendTexture()
1981 if (!this->createVkImageForBackendSurface(vkFormat, dimensions, sampleCnt, GrTexturable::kNo, in createTestingOnlyBackendRenderTarget()
DGrVkGpu.h376 GrTexturable,
/third_party/skia/src/gpu/d3d/
DGrD3DGpu.cpp1272 GrTexturable texturable, in createTextureResourceForBackendSurface()
1278 SkASSERT(texturable == GrTexturable::kYes || renderable == GrRenderable::kYes); in createTextureResourceForBackendSurface()
1284 if (texturable == GrTexturable::kYes && !this->d3dCaps().isFormatTexturable(dxgiFormat)) { in createTextureResourceForBackendSurface()
1362 if (!this->createTextureResourceForBackendSurface(dxgiFormat, dimensions, GrTexturable::kYes, in onCreateBackendTexture()
1612 if (!this->createTextureResourceForBackendSurface(dxgiFormat, dimensions, GrTexturable::kNo, in createTestingOnlyBackendRenderTarget()
DGrD3DGpu.h282 GrTexturable texturable,
/third_party/skia/src/gpu/mtl/
DGrMtlGpu.h285 GrTexturable,
DGrMtlGpu.mm866 GrTexturable texturable,
870 SkASSERT(texturable == GrTexturable::kYes || renderable == GrRenderable::kYes);
872 if (texturable == GrTexturable::kYes && !fMtlCaps->isFormatTexturable(mtlFormat)) {
892 MTLTextureUsage usage = texturable == GrTexturable::kYes ? MTLTextureUsageShaderRead : 0;
916 if (!this->createMtlTextureForBackendSurface(mtlFormat, dimensions, 1, GrTexturable::kYes,
1019 if (!this->createMtlTextureForBackendSurface(mtlFormat, dimensions, 1, GrTexturable::kYes,
1174 if (!this->createMtlTextureForBackendSurface(format, dimensions, sampleCnt, GrTexturable::kNo,
/third_party/skia/include/private/
DGrTypesPriv.h65 enum class GrTexturable : bool { enum