Lines Matching refs:texture
1015 Texture texture(Texture::TEXTURE_EXTERNAL, layer.source.buffer.textureName); in drawLayers() local
1018 texture.setMatrix(texMatrix.asArray()); in drawLayers()
1019 texture.setFiltering(layer.source.buffer.useTextureFiltering); in drawLayers()
1021 texture.setDimensions(gBuf->getWidth(), gBuf->getHeight()); in drawLayers()
1029 setupLayerTexturing(texture); in drawLayers()
1154 void GLESRenderEngine::setupLayerTexturing(const Texture& texture) { in setupLayerTexturing() argument
1155 GLuint target = texture.getTextureTarget(); in setupLayerTexturing()
1156 glBindTexture(target, texture.getTextureName()); in setupLayerTexturing()
1158 if (texture.getFiltering()) { in setupLayerTexturing()
1166 mState.texture = texture; in setupLayerTexturing()
1172 Texture texture(Texture::TEXTURE_2D, mProtectedTexName); in setupLayerBlackedOut() local
1173 texture.setDimensions(1, 1); // FIXME: we should get that from somewhere in setupLayerBlackedOut()
1174 mState.texture = texture; in setupLayerBlackedOut()