Home
last modified time | relevance | path

Searched refs:isYUV (Results 1 – 25 of 42) sorted by relevance

12

/third_party/flutter/skia/tools/
DDDLPromiseImageHelper.h133 bool isYUV() const { return SkToBool(fYUVData.get()); } in isYUV() function
142 SkASSERT(this->isYUV()); in yuvColorSpace()
146 SkASSERT(this->isYUV()); in yuvaIndices()
150 SkASSERT(this->isYUV()); in yuvPixmap()
155 SkASSERT(!this->isYUV()); in normalBitmap()
160 SkASSERT(index >= 0 && index < (this->isYUV() ? SkYUVASizeInfo::kMaxCount : 1)); in setCallbackContext()
164 SkASSERT(index >= 0 && index < (this->isYUV() ? SkYUVASizeInfo::kMaxCount : 1)); in callbackContext()
168 SkASSERT(index >= 0 && index < (this->isYUV() ? SkYUVASizeInfo::kMaxCount : 1)); in refCallbackContext()
173 SkASSERT(index >= 0 && index < (this->isYUV() ? SkYUVASizeInfo::kMaxCount : 1)); in promiseTexture()
187 SkASSERT(this->isYUV()); in addYUVPlane()
DDDLPromiseImageHelper.cpp102 if (info.isYUV()) { in uploadAllToGPU()
167 SkASSERT(!curImage.isYUV()); in PromiseImageCreator()
176 if (curImage.isYUV()) { in PromiseImageCreator()
/third_party/vk-gl-cts/modules/egl/
DteglAndroidUtil.cpp51 MovePtr<ImageSource> createAndroidNativeImageSource (GLenum format, deUint32 numLayers, bool isYUV) in createAndroidNativeImageSource() argument
54 return createUnsupportedImageSource("Not Android platform", format, isYUV); in createAndroidNativeImageSource()
69 MovePtr<ImageSource> createAndroidNativeImageSource (GLenum format, deUint32 numLayers, bool isYUV) in createAndroidNativeImageSource() argument
72 return createUnsupportedImageSource("AHB API not supported", format, isYUV); in createAndroidNativeImageSource()
175 AndroidNativeClientBuffer (const Library& egl, GLenum format, deUint32 numLayers, bool isYUV);
187 …ffer::AndroidNativeClientBuffer (const Library& egl, GLenum format, deUint32 numLayers, bool isYUV) in AndroidNativeClientBuffer() argument
210 isYUV ? AHB_FORMAT_Y8Cb8Cr8_420 : getPixelFormat(format), in AndroidNativeClientBuffer()
272 …GLenum format, deUint32 numLayers, bool isYUV) : m_format(format), m_numLayers(numLayers), m_isY8C… in AndroidNativeImageSource() argument
337 MovePtr<ImageSource> createAndroidNativeImageSource (GLenum format, deUint32 numLayers, bool isYUV) in createAndroidNativeImageSource() argument
341 return MovePtr<ImageSource>(new AndroidNativeImageSource(format, numLayers, isYUV)); in createAndroidNativeImageSource()
[all …]
DteglAndroidUtil.hpp35 …<ImageSource> createAndroidNativeImageSource (glw::GLenum format, deUint32 numLayers, bool isYUV);
DteglImageUtil.cpp521 …onst string& message, GLenum format, bool isYUV) : m_message(message), m_format(format), m_isY8Cb8… in UnsupportedImageSource() argument
553 MovePtr<ImageSource> createUnsupportedImageSource (const string& message, GLenum format, bool isYUV) in createUnsupportedImageSource() argument
555 return MovePtr<ImageSource>(new UnsupportedImageSource(message, format, isYUV)); in createUnsupportedImageSource()
DteglImageUtil.hpp83 …Source> createUnsupportedImageSource (const std::string& message, glw::GLenum format, bool isYUV);
/third_party/skia/tools/
DDDLPromiseImageHelper.h142 bool isYUV() const { return fYUVAPixmaps.isValid(); } in isYUV() function
152 SkASSERT(this->isYUV()); in yuvPixmap()
157 SkASSERT(!this->isYUV()); in baseLevel()
166 SkASSERT(index >= 0 && index < (this->isYUV() ? SkYUVAInfo::kMaxPlanes : 1)); in setCallbackContext()
170 SkASSERT(index >= 0 && index < (this->isYUV() ? SkYUVAInfo::kMaxPlanes : 1)); in callbackContext()
174 SkASSERT(index >= 0 && index < (this->isYUV() ? SkYUVAInfo::kMaxPlanes : 1)); in refCallbackContext()
179 if (this->isYUV()) { in mipMapped()
185 SkASSERT(index >= 0 && index < (this->isYUV() ? SkYUVAInfo::kMaxPlanes : 1)); in backendFormat()
189 SkASSERT(index >= 0 && index < (this->isYUV() ? SkYUVAInfo::kMaxPlanes : 1)); in promiseTexture()
DDDLPromiseImageHelper.cpp46 SkASSERT(!this->isYUV()); in normalMipLevels()
60 SkASSERT(!this->isYUV()); in numMipLevels()
152 if (info->isYUV()) { in CreateBETexturesForPromiseImage()
195 if (info->isYUV()) { in DeleteBETexturesForPromiseImage()
223 if (info.isYUV()) { in createCallbackContexts()
318 if (!curImage.isYUV() && !curImage.callbackContext(0)) { in CreatePromiseImages()
326 if (curImage.isYUV()) { in CreatePromiseImages()
/third_party/skia/third_party/externals/angle2/src/common/linux/
Ddma_buf_utils.cpp43 GLenum DrmFourCCFormatToGLInternalFormat(int fourccFormat, bool *isYUV) in DrmFourCCFormatToGLInternalFormat() argument
45 *isYUV = false; in DrmFourCCFormatToGLInternalFormat()
71 *isYUV = true; in DrmFourCCFormatToGLInternalFormat()
Ddma_buf_utils.h16 GLenum DrmFourCCFormatToGLInternalFormat(int format, bool *isYUV);
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
DFormat.h47 bool isYUV,
111 bool isYUV; member
151 bool isYUV, in Format() argument
181 isYUV(isYUV), in Format()
DImageImpl.h42 virtual bool isYUV() const = 0;
/third_party/skia/third_party/externals/angle2/src/common/
Dandroid_util.cpp222 GLenum getPixelFormatInfo(int pixelFormat, bool *isYUV) in getPixelFormatInfo() argument
224 *isYUV = false; in getPixelFormatInfo()
260 *isYUV = true; in getPixelFormatInfo()
266 *isYUV = true; in getPixelFormatInfo()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DFramebufferAttachment.h135 bool isYUV() const;
219 virtual bool isYUV() const = 0;
287 inline bool FramebufferAttachment::isYUV() const in isYUV() function
290 return mResource->isYUV(); in isYUV()
DImage.cpp136 bool ImageSibling::isYUV() const in isYUV() function in egl::ImageSibling
138 return mTargetOf.get() && mTargetOf->isYUV(); in isYUV()
209 bool ExternalImageSibling::isYUV() const in isYUV() function in egl::ExternalImageSibling
211 return mImplementation->isYUV(); in isYUV()
406 bool Image::isYUV() const in isYUV() function in egl::Image
451 mState.yuv = externalSibling->isYUV(); in initialize()
DImage.h54 bool isYUV() const override;
103 bool isYUV() const override;
164 bool isYUV() const;
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcConfigListEGL.cpp122 bool isYUV = in getDefaultEglConfigList() local
126 bool isOk = isRenderable && isConformant && (numSamples == 0) && !isFloatType && !isYUV; in getDefaultEglConfigList()
145 DE_ASSERT(!isRenderable || !isConformant || (numSamples != 0) || isFloatType || isYUV); in getDefaultEglConfigList()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/android/
DNativeBufferImageSiblingAndroid.h30 bool isYUV() const override;
DNativeBufferImageSiblingAndroid.cpp50 bool NativeBufferImageSiblingAndroid::isYUV() const in isYUV() function in rx::NativeBufferImageSiblingAndroid
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/
DDmaBufImageSiblingEGL.h30 bool isYUV() const override;
DDmaBufImageSiblingEGL.cpp52 bool DmaBufImageSiblingEGL::isYUV() const in isYUV() function in rx::DmaBufImageSiblingEGL
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/linux/
DDmaBufImageSiblingVkLinux.h31 bool isYUV() const override;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/android/
DHardwareBufferImageSiblingVkAndroid.h35 bool isYUV() const override;
/third_party/ffmpeg/libswscale/tests/
Dpixdesc_query.c33 {"isYUV", isYUV},
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DExternalImageSiblingImpl11.h32 bool isYUV() const override;

12