Searched refs:_textureIds (Results 1 – 2 of 2) sorted by relevance
/external/webrtc/webrtc/modules/video_render/android/ |
D | video_render_opengles20.cc | 345 glGenTextures(3, _textureIds); //Generate the Y, U and V texture in SetupTextures() 346 InitializeTexture(GL_TEXTURE0, _textureIds[0], width, height); in SetupTextures() 347 InitializeTexture(GL_TEXTURE1, _textureIds[1], width / 2, height / 2); in SetupTextures() 348 InitializeTexture(GL_TEXTURE2, _textureIds[2], width / 2, height / 2); in SetupTextures() 380 glBindTexture(GL_TEXTURE_2D, _textureIds[0]); in UpdateTextures() 385 glBindTexture(GL_TEXTURE_2D, _textureIds[1]); in UpdateTextures() 390 glBindTexture(GL_TEXTURE_2D, _textureIds[2]); in UpdateTextures()
|
D | video_render_opengles20.h | 42 GLuint _textureIds[3]; // Texture id of Y,U and V texture. variable
|