Lines Matching refs:YUVPlane

87 GLint getGlTextureFormat(FrameworkFormat format, bool yuv420888ToNv21, YUVPlane plane) {  in getGlTextureFormat()
91 case YUVPlane::Y: in getGlTextureFormat()
92 case YUVPlane::U: in getGlTextureFormat()
93 case YUVPlane::V: in getGlTextureFormat()
95 case YUVPlane::UV: in getGlTextureFormat()
102 case YUVPlane::Y: in getGlTextureFormat()
104 case YUVPlane::UV: in getGlTextureFormat()
106 case YUVPlane::U: in getGlTextureFormat()
107 case YUVPlane::V: in getGlTextureFormat()
113 case YUVPlane::Y: in getGlTextureFormat()
114 case YUVPlane::U: in getGlTextureFormat()
115 case YUVPlane::V: in getGlTextureFormat()
117 case YUVPlane::UV: in getGlTextureFormat()
124 case YUVPlane::Y: in getGlTextureFormat()
126 case YUVPlane::UV: in getGlTextureFormat()
128 case YUVPlane::U: in getGlTextureFormat()
129 case YUVPlane::V: in getGlTextureFormat()
135 case YUVPlane::Y: in getGlTextureFormat()
137 case YUVPlane::UV: in getGlTextureFormat()
139 case YUVPlane::U: in getGlTextureFormat()
140 case YUVPlane::V: in getGlTextureFormat()
150 GLenum getGlPixelFormat(FrameworkFormat format, bool yuv420888ToNv21, YUVPlane plane) { in getGlPixelFormat()
154 case YUVPlane::Y: in getGlPixelFormat()
155 case YUVPlane::U: in getGlPixelFormat()
156 case YUVPlane::V: in getGlPixelFormat()
158 case YUVPlane::UV: in getGlPixelFormat()
165 case YUVPlane::Y: in getGlPixelFormat()
167 case YUVPlane::UV: in getGlPixelFormat()
169 case YUVPlane::U: in getGlPixelFormat()
170 case YUVPlane::V: in getGlPixelFormat()
176 case YUVPlane::Y: in getGlPixelFormat()
177 case YUVPlane::U: in getGlPixelFormat()
178 case YUVPlane::V: in getGlPixelFormat()
180 case YUVPlane::UV: in getGlPixelFormat()
187 case YUVPlane::Y: in getGlPixelFormat()
189 case YUVPlane::UV: in getGlPixelFormat()
191 case YUVPlane::U: in getGlPixelFormat()
192 case YUVPlane::V: in getGlPixelFormat()
198 case YUVPlane::Y: in getGlPixelFormat()
200 case YUVPlane::UV: in getGlPixelFormat()
202 case YUVPlane::U: in getGlPixelFormat()
203 case YUVPlane::V: in getGlPixelFormat()
213 GLsizei getGlPixelType(FrameworkFormat format, bool yuv420888ToNv21, YUVPlane plane) { in getGlPixelType()
217 case YUVPlane::Y: in getGlPixelType()
218 case YUVPlane::U: in getGlPixelType()
219 case YUVPlane::V: in getGlPixelType()
221 case YUVPlane::UV: in getGlPixelType()
228 case YUVPlane::Y: in getGlPixelType()
229 case YUVPlane::UV: in getGlPixelType()
231 case YUVPlane::U: in getGlPixelType()
232 case YUVPlane::V: in getGlPixelType()
238 case YUVPlane::Y: in getGlPixelType()
239 case YUVPlane::U: in getGlPixelType()
240 case YUVPlane::V: in getGlPixelType()
242 case YUVPlane::UV: in getGlPixelType()
249 case YUVPlane::Y: in getGlPixelType()
250 case YUVPlane::UV: in getGlPixelType()
252 case YUVPlane::U: in getGlPixelType()
253 case YUVPlane::V: in getGlPixelType()
259 case YUVPlane::Y: in getGlPixelType()
260 case YUVPlane::UV: in getGlPixelType()
262 case YUVPlane::U: in getGlPixelType()
263 case YUVPlane::V: in getGlPixelType()
450 YUVPlane plane, in createYUVGLTex()
471 YUVPlane plane, void* pixels, uint32_t pixelsStride) { in readYUVTex()
509 YUVPlane plane, in subUpdateYUVGLTex()
883 …createYUVGLTex(GL_TEXTURE0, yStridePixels, yHeight, mFormat, mYuv420888ToNv21, YUVPlane::Y, &mText… in init()
887 …createYUVGLTex(GL_TEXTURE1, uStridePixels, uHeight, mFormat, mYuv420888ToNv21, YUVPlane::UV, &mTex… in init()
892 …createYUVGLTex(GL_TEXTURE1, uStridePixels, uHeight, mFormat, mYuv420888ToNv21, YUVPlane::U, &mText… in init()
895 …createYUVGLTex(GL_TEXTURE2, vStridePixels, vHeight, mFormat, mYuv420888ToNv21, YUVPlane::V, &mText… in init()
949 …readYUVTex(mTextureV, mFormat, mYuv420888ToNv21, YUVPlane::UV, pixels + std::min(uOffsetBytes, vOf… in readPixels()
952 …readYUVTex(mTextureU, mFormat, mYuv420888ToNv21, YUVPlane::U, pixels + uOffsetBytes, uStridePixels… in readPixels()
953 …readYUVTex(mTextureV, mFormat, mYuv420888ToNv21, YUVPlane::V, pixels + vOffsetBytes, vStridePixels… in readPixels()
961 …readYUVTex(mTextureY, mFormat, mYuv420888ToNv21, YUVPlane::Y, pixels + yOffsetBytes, yStridePixels… in readPixels()
1049 …E0, mTextureY, x, y, yStridePixels, yHeight, mFormat, mYuv420888ToNv21, YUVPlane::Y, pixels + yOff… in drawConvertFromFormat()
1051 …E1, mTextureU, x, y, uStridePixels, uHeight, mFormat, mYuv420888ToNv21, YUVPlane::UV, pixels + std… in drawConvertFromFormat()
1053 …E1, mTextureU, x, y, uStridePixels, uHeight, mFormat, mYuv420888ToNv21, YUVPlane::U, pixels + uOff… in drawConvertFromFormat()
1054 …E2, mTextureV, x, y, vStridePixels, vHeight, mFormat, mYuv420888ToNv21, YUVPlane::V, pixels + vOff… in drawConvertFromFormat()