Lines Matching refs:textureBinding
1192 TextureBindingSp textureBinding; in init() local
1220 textureBinding = createTexture(); in init()
1227 const auto bindingType = textureBinding->getType(); in init()
1288 const auto textureType = textureBinding->getType(); in init()
1293 case TextureBinding::TYPE_1D: levels = textureBinding->get1D().getNumLevels(); break; in init()
1294 case TextureBinding::TYPE_2D: levels = textureBinding->get2D().getNumLevels(); break; in init()
1295 case TextureBinding::TYPE_3D: levels = textureBinding->get3D().getNumLevels(); break; in init()
1296 case TextureBinding::TYPE_CUBE_MAP: levels = textureBinding->getCube().getNumLevels(); break; in init()
1297 case TextureBinding::TYPE_1D_ARRAY: levels = textureBinding->get1DArray().getNumLevels(); break; in init()
1298 case TextureBinding::TYPE_2D_ARRAY: levels = textureBinding->get2DArray().getNumLevels(); break; in init()
1299 …case TextureBinding::TYPE_CUBE_ARRAY: levels = textureBinding->getCubeArray().getNumLevels(); brea… in init()
1308 textureBinding->setParameters(textureParams); in init()
1309 m_textures.push_back(textureBinding); in init()