Home
last modified time | relevance | path

Searched refs:getBoundTexture (Results 1 – 4 of 4) sorted by relevance

/device/generic/goldfish/opengl/system/GLESv1_enc/
DGLEncoder.cpp94 *ptr = state->getBoundTexture(GL_TEXTURE_2D); in s_glGetIntegerv()
98 *ptr = state->getBoundTexture(GL_TEXTURE_EXTERNAL_OES); in s_glGetIntegerv()
133 *ptr = (GLfloat)state->getBoundTexture(GL_TEXTURE_2D); in s_glGetFloatv()
137 *ptr = (GLfloat)state->getBoundTexture(GL_TEXTURE_EXTERNAL_OES); in s_glGetFloatv()
172 *ptr = state->getBoundTexture(GL_TEXTURE_2D) << 16; in s_glGetFixedv()
176 *ptr = state->getBoundTexture(GL_TEXTURE_EXTERNAL_OES) << 16; in s_glGetFixedv()
206 *ptr = state->getBoundTexture(GL_TEXTURE_2D) != 0 ? GL_TRUE : GL_FALSE; in s_glGetBooleanv()
210 *ptr = state->getBoundTexture(GL_TEXTURE_EXTERNAL_OES) != 0 in s_glGetBooleanv()
649 state->getBoundTexture(GL_TEXTURE_2D)); in s_glBindTexture()
686 state->getBoundTexture(currTarget)); in s_glDisable()
[all …]
/device/generic/goldfish/opengl/system/GLESv2_enc/
DGL2Encoder.cpp268 *ptr = state->getBoundTexture(GL_TEXTURE_2D); in s_glGetIntegerv()
271 *ptr = state->getBoundTexture(GL_TEXTURE_EXTERNAL_OES); in s_glGetIntegerv()
316 *ptr = (GLfloat)state->getBoundTexture(GL_TEXTURE_2D); in s_glGetFloatv()
319 *ptr = (GLfloat)state->getBoundTexture(GL_TEXTURE_EXTERNAL_OES); in s_glGetFloatv()
357 *ptr = state->getBoundTexture(GL_TEXTURE_2D) != 0 ? GL_TRUE : GL_FALSE; in s_glGetBooleanv()
360 *ptr = state->getBoundTexture(GL_TEXTURE_EXTERNAL_OES) != 0 in s_glGetBooleanv()
879 m_state->getBoundTexture(newTarget)); in updateHostTexture2DBinding()
1098 state->getBoundTexture(GL_TEXTURE_2D)); in s_glBindTexture()
1268 m_state->getBoundTexture(target)); in override2DTextureTarget()
1276 m_state->getBoundTexture(priorityTarget)); in restore2DTextureTarget()
/device/generic/goldfish/opengl/shared/OpenglCodecCommon/
DGLClientState.h178 GLuint getBoundTexture(GLenum target) const;
DGLClientState.cpp379 GLuint GLClientState::getBoundTexture(GLenum target) const in getBoundTexture() function in GLClientState