Lines Matching refs:yuv420888ToNv21
45 bool isInterleaved(FrameworkFormat format, bool yuv420888ToNv21) { in isInterleaved() argument
51 return yuv420888ToNv21; in isInterleaved()
65 YUVInterleaveDirection getInterleaveDirection(FrameworkFormat format, bool yuv420888ToNv21) { in getInterleaveDirection() argument
66 if (!isInterleaved(format, yuv420888ToNv21)) { in getInterleaveDirection()
75 if (yuv420888ToNv21) { in getInterleaveDirection()
87 GLint getGlTextureFormat(FrameworkFormat format, bool yuv420888ToNv21, YUVPlane plane) { in getGlTextureFormat() argument
100 if (yuv420888ToNv21) { in getGlTextureFormat()
150 GLenum getGlPixelFormat(FrameworkFormat format, bool yuv420888ToNv21, YUVPlane plane) { in getGlPixelFormat() argument
163 if (yuv420888ToNv21) { in getGlPixelFormat()
213 GLsizei getGlPixelType(FrameworkFormat format, bool yuv420888ToNv21, YUVPlane plane) { in getGlPixelType() argument
226 if (yuv420888ToNv21) { in getGlPixelType()
312 bool yuv420888ToNv21, in getYUVOffsets() argument
354 if (yuv420888ToNv21) { in getYUVOffsets()
449 bool yuv420888ToNv21, in createYUVGLTex() argument
462 const GLint textureFormat = getGlTextureFormat(format, yuv420888ToNv21, plane); in createYUVGLTex()
463 const GLenum pixelFormat = getGlPixelFormat(format, yuv420888ToNv21, plane); in createYUVGLTex()
464 const GLenum pixelType = getGlPixelType(format, yuv420888ToNv21, plane); in createYUVGLTex()
470 static void readYUVTex(GLuint tex, FrameworkFormat format, bool yuv420888ToNv21, in readYUVTex() argument
484 const GLenum pixelFormat = getGlPixelFormat(format, yuv420888ToNv21, plane); in readYUVTex()
485 const GLenum pixelType = getGlPixelType(format, yuv420888ToNv21,plane); in readYUVTex()
508 bool yuv420888ToNv21, in subUpdateYUVGLTex() argument
513 const GLenum pixelFormat = getGlPixelFormat(format, yuv420888ToNv21, plane); in subUpdateYUVGLTex()
514 const GLenum pixelType = getGlPixelType(format, yuv420888ToNv21, plane); in subUpdateYUVGLTex()
863 YUVConverter::YUVConverter(int width, int height, FrameworkFormat format, bool yuv420888ToNv21) in YUVConverter() argument
868 mYuv420888ToNv21(yuv420888ToNv21) {} in YUVConverter()