Home | History | Annotate | Download | only in RenderEngine

Lines Matching refs:Texture

32 #include "Texture.h"
122 void GLES20RenderEngine::setupLayerTexturing(const Texture& texture) {
123 GLuint target = texture.getTextureTarget();
124 glBindTexture(target, texture.getTextureName());
126 if (texture.getFiltering()) {
134 mState.setTexture(texture);
139 Texture texture(Texture::TEXTURE_2D, mProtectedTexName);
140 texture.setDimensions(1, 1); // FIXME: we should get that from somewhere
141 mState.setTexture(texture);
156 // turn our EGLImage into a texture
215 // create the texture
230 group.texture = tname;
252 Texture texture(Texture::TEXTURE_2D, group.texture);
253 texture.setDimensions(group.width, group.height);
254 glBindTexture(GL_TEXTURE_2D, group.texture);
259 mState.setTexture(texture);
279 // free our fbo and texture
281 glDeleteTextures(1, &group.texture);