Home
last modified time | relevance | path

Searched refs:texIt (Results 1 – 8 of 8) sorted by relevance

/dports/games/trenchbroom/TrenchBroom-ed46601/common/src/Renderer/
H A DTexturedIndexArrayMap.cpp64 TextureToSize::const_iterator texIt, texEnd; in initialize() local
65 for (texIt = m_sizes.begin(), texEnd = m_sizes.end(); texIt != texEnd; ++texIt) { in initialize()
66 const Texture* texture = texIt->first; in initialize()
67 const IndexArrayMap::Size& size = texIt->second; in initialize()
94 TextureToIndexArrayMap::const_iterator texIt, texEnd; in render() local
95 for (texIt = m_ranges->begin(), texEnd = m_ranges->end(); texIt != texEnd; ++texIt) { in render()
96 const Texture* texture = texIt->first; in render()
97 const IndexArrayMap& indexRange = texIt->second; in render()
H A DTexturedIndexRangeMap.cpp55 TextureToSize::const_iterator texIt, texEnd; in initialize() local
56 for (texIt = m_sizes.begin(), texEnd = m_sizes.end(); texIt != texEnd; ++texIt) { in initialize()
57 const Texture* texture = texIt->first; in initialize()
58 const IndexRangeMap::Size& size = texIt->second; in initialize()
96 TextureToIndexRangeMap::const_iterator texIt, texEnd; in render() local
97 for (texIt = m_data->begin(), texEnd = m_data->end(); texIt != texEnd; ++texIt) { in render()
98 const Texture* texture = texIt->first; in render()
99 const IndexRangeMap& indexArray = texIt->second; in render()
/dports/games/stuntrally/stuntrally-2.6.1/source/shiny/Main/
H A DMaterialInstance.cpp153 …vector<MaterialInstanceTextureUnit>::iterator texIt = texUnits->begin(); texIt != texUnits->end()… in createForConfiguration() local
156 …:find(usedTextureSamplersVertex.begin(), usedTextureSamplersVertex.end(), texIt->getName()) != use… in createForConfiguration()
157 …d(usedTextureSamplersFragment.begin(), usedTextureSamplersFragment.end(), texIt->getName()) != use… in createForConfiguration()
159 …hasFragment)) && allowFixedFunction) && texIt->hasProperty("create_in_ffp") && retrieveValue<Boole… in createForConfiguration()
161 boost::shared_ptr<TextureUnitState> texUnit = pass->createTextureUnitState (texIt->getName()); in createForConfiguration()
162 texIt->copyAll (texUnit.get(), context); in createForConfiguration()
170 pass->setTextureUnitIndex (foundVertex ? GPT_Vertex : GPT_Fragment, texIt->getName(), i); in createForConfiguration()
/dports/games/openmw/openmw-openmw-0.47.0/components/shader/
H A Dshadervisitor.cpp469 …d::map<int, std::string>::const_iterator texIt = reqs.mTextures.begin(); texIt != reqs.mTextures.e… in createProgram() local
471 defineMap[texIt->second] = "1"; in createProgram()
472 defineMap[texIt->second + std::string("UV")] = std::to_string(texIt->first); in createProgram()
571 …d::map<int, std::string>::const_iterator texIt = reqs.mTextures.begin(); texIt != reqs.mTextures.e… in createProgram() local
573 …writableStateSet->addUniform(new osg::Uniform(texIt->second.c_str(), texIt->first), osg::StateAttr… in createProgram()
574 addedState->addUniform(texIt->second); in createProgram()
/dports/games/doomsday/doomsday-2.3.1/doomsday/apps/client/src/ui/infine/
H A Dfinaleanimwidget.cpp177 Vector2f const *texIt = texCoords; in drawGeometry() local
178 for (int i = 0; i < numVerts; ++i, posIt++, colorIt++, texIt++) in drawGeometry()
181 DGL_TexCoord2f(0, texIt->x, texIt->y); in drawGeometry()
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/Samples/Compositor/src/
H A DCompositorDemo_FrameListener.cpp553 Ogre::CompositionTechnique::TextureDefinitionIterator texIt = in updateDebugRTTWindow() local
555 while (texIt.hasMoreElements()) in updateDebugRTTWindow()
557 Ogre::CompositionTechnique::TextureDefinition* texDef = texIt.getNext(); in updateDebugRTTWindow()
/dports/graphics/qt5-3d/kde-qt3d-5.15.2p39/src/plugins/sceneparsers/gltfexport/
H A Dgltfexporter.cpp502 for (auto texIt = m_textureIdMap.constBegin(); texIt != m_textureIdMap.constEnd(); ++texIt) { in copyTextures() local
503 QFileInfo fi(texIt.key()); in copyTextures()
505 if (texIt.key().startsWith(QStringLiteral(":"))) in copyTextures()
506 absoluteFilePath = texIt.key(); in copyTextures()
513 if (!m_imageMap.contains(texIt.key())) in copyTextures()
514 m_imageMap.insert(texIt.key(), copiedMap.value(absoluteFilePath)); in copyTextures()
544 m_imageMap.insert(texIt.key(), fileName); in copyTextures()
/dports/graphics/qt5-3d/kde-qt3d-5.15.2p39/tools/qgltf/
H A Dqgltf.cpp990 QHash<QByteArray, QString>::iterator texIt = matInfo.m_textures.begin(); in parseMaterials() local
991 while (texIt != matInfo.m_textures.end()) { in parseMaterials()
993 if (texIt->startsWith('*')) in parseMaterials()
994 *texIt = m_embeddedTextures[*texIt].name; in parseMaterials()
996 m_externalTextures.insert(*texIt); in parseMaterials()
997 ++texIt; in parseMaterials()