Home
last modified time | relevance | path

Searched refs:ycbcrConversionInfo (Results 1 – 11 of 11) sorted by relevance

/third_party/flutter/skia/src/gpu/vk/
DGrVkImage.h59 if (fResource && this->ycbcrConversionInfo().isValid()) { in getBackendFormat()
60 SkASSERT(this->imageFormat() == this->ycbcrConversionInfo().fFormat); in getBackendFormat()
61 return GrBackendFormat::MakeVk(this->ycbcrConversionInfo()); in getBackendFormat()
67 const GrVkYcbcrConversionInfo& ycbcrConversionInfo() const { in ycbcrConversionInfo() function
DGrVkUniformHandler.cpp281 if (vkTexture->ycbcrConversionInfo().isValid()) { in addSampler()
284 state, vkTexture->ycbcrConversionInfo()); in addSampler()
DGrVkGpu.cpp782 bool dstHasYcbcr = tex->ycbcrConversionInfo().isValid(); in uploadTexDataOptimal()
2086 bool dstHasYcbcr = dstImage->ycbcrConversionInfo().isValid(); in copySurfaceAsCopyImage()
2087 bool srcHasYcbcr = srcImage->ycbcrConversionInfo().isValid(); in copySurfaceAsCopyImage()
2141 bool dstHasYcbcr = dstImage->ycbcrConversionInfo().isValid(); in copySurfaceAsBlit()
2142 bool srcHasYcbcr = srcImage->ycbcrConversionInfo().isValid(); in copySurfaceAsBlit()
2249 bool dstHasYcbcr = dstImage->ycbcrConversionInfo().isValid(); in onCopySurface()
2250 bool srcHasYcbcr = srcImage->ycbcrConversionInfo().isValid(); in onCopySurface()
2324 bool srcHasYcbcr = image->ycbcrConversionInfo().isValid(); in onReadPixels()
DGrVkPipelineState.cpp229 state, texture->ycbcrConversionInfo()); in setAndBindTextures()
DGrVkCaps.cpp1377 if (tex->ycbcrConversionInfo().isValid()) { in surfaceSupportsReadPixels()
1396 if (tex->ycbcrConversionInfo().isValid()) { in onSurfaceSupportsWritePixels()
/third_party/skia/src/gpu/vk/
DGrVkImage.h82 if (fResource && this->ycbcrConversionInfo().isValid()) { in backendFormat()
83 SkASSERT(this->imageFormat() == this->ycbcrConversionInfo().fFormat); in backendFormat()
84 return GrBackendFormat::MakeVk(this->ycbcrConversionInfo(), usesDRMModifier); in backendFormat()
90 const GrVkYcbcrConversionInfo& ycbcrConversionInfo() const { in ycbcrConversionInfo() function
DGrVkTexture.cpp37 SkASSERT(!fTexture->ycbcrConversionInfo().isValid() || in GrVkTexture()
38 !fTexture->ycbcrConversionInfo().fExternalFormat); in GrVkTexture()
75 SkASSERT(!fTexture->ycbcrConversionInfo().isValid()); in GrVkTexture()
DGrVkGpu.cpp2156 bool dstHasYcbcr = dstImage->ycbcrConversionInfo().isValid(); in copySurfaceAsCopyImage()
2157 bool srcHasYcbcr = srcImage->ycbcrConversionInfo().isValid(); in copySurfaceAsCopyImage()
2220 bool dstHasYcbcr = dstImage->ycbcrConversionInfo().isValid(); in copySurfaceAsBlit()
2221 bool srcHasYcbcr = srcImage->ycbcrConversionInfo().isValid(); in copySurfaceAsBlit()
2354 bool dstHasYcbcr = dstImage->ycbcrConversionInfo().isValid(); in onCopySurface()
2355 bool srcHasYcbcr = srcImage->ycbcrConversionInfo().isValid(); in onCopySurface()
DGrVkPipelineState.cpp186 state, texAttachment->ycbcrConversionInfo()); in setAndBindTextures()
DGrVkCaps.cpp1558 if (texImage->ycbcrConversionInfo().isValid()) { in surfaceSupportsReadPixels()
1596 if (texImage->ycbcrConversionInfo().isValid()) { in onSurfaceSupportsWritePixels()
/third_party/flutter/skia/include/gpu/vk/
DGrVkTypes.h182 GrVkYcbcrConversionInfo ycbcrConversionInfo = GrVkYcbcrConversionInfo())
191 , fYcbcrConversionInfo(ycbcrConversionInfo) {} in fImage()