Home
last modified time | relevance | path

Searched refs:vertexShaderFile (Results 1 – 18 of 18) sorted by relevance

/dports/graphics/krita/krita-4.4.8/libs/ui/opengl/
H A Dkis_opengl_shader_loader.cpp77 QFile vertexShaderFile(":/" + vertPath); in loadShader() local
78 vertexShaderFile.open(QIODevice::ReadOnly); in loadShader()
79 vertSource.append(vertexShaderFile.readAll()); in loadShader()
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/meshlabplugins/decorate_shadow/
H A Ddecorate_shader.h243 QFile vertexShaderFile(path + QString(".vert")); in compileAndLink()
244 bool ret=vertexShaderFile.open(QIODevice::ReadOnly | QIODevice::Text); in compileAndLink()
251 QByteArray bArray = vertexShaderFile.readAll(); in compileAndLink()
266 vertexShaderFile.close(); in compileAndLink()
/dports/graphics/krita/krita-4.4.8/plugins/dockers/smallcolorselector/
H A DKisGLImageWidget.cpp88 QFile vertexShaderFile(QString(":/") + "kis_gl_image_widget.vert"); in initializeGL() local
89 vertexShaderFile.open(QIODevice::ReadOnly); in initializeGL()
90 QString vertSource = vertexShaderFile.readAll(); in initializeGL()
/dports/emulators/ppsspp/ppsspp-1.12.3/GPU/Common/
H A DPostShader.h34 Path vertexShaderFile; member
H A DPostShader.cpp166 info.vertexShaderFile = path / temp; in LoadPostShaderInfo()
H A DPresentationCommon.cpp265 std::string vsSourceGLSL = ReadShaderSrc(shaderInfo->vertexShaderFile); in BuildPostShader()
283 … to build post-processing program from %s and %s!\n%s", shaderInfo->vertexShaderFile.c_str(), shad… in BuildPostShader()
/dports/emulators/ppsspp-qt5/ppsspp-1.12.3/GPU/Common/
H A DPostShader.h34 Path vertexShaderFile; member
H A DPostShader.cpp166 info.vertexShaderFile = path / temp; in LoadPostShaderInfo()
H A DPresentationCommon.cpp265 std::string vsSourceGLSL = ReadShaderSrc(shaderInfo->vertexShaderFile); in BuildPostShader()
283 … to build post-processing program from %s and %s!\n%s", shaderInfo->vertexShaderFile.c_str(), shad… in BuildPostShader()
/dports/emulators/libretro-ppsspp/ppsspp-1.12.3/GPU/Common/
H A DPostShader.h34 Path vertexShaderFile; member
H A DPostShader.cpp166 info.vertexShaderFile = path / temp; in LoadPostShaderInfo()
H A DPresentationCommon.cpp265 std::string vsSourceGLSL = ReadShaderSrc(shaderInfo->vertexShaderFile); in BuildPostShader()
283 … to build post-processing program from %s and %s!\n%s", shaderInfo->vertexShaderFile.c_str(), shad… in BuildPostShader()
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osgPlugins/trk/
H A DReaderWriterTRK.cpp167 std::string vertexShaderFile("track.vert"); in assign() local
172 …ef_ptr<osg::Shader> vertexShader = osgDB::readRefShaderFile(osg::Shader::VERTEX, vertexShaderFile); in assign()
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osgPlugins/trk/
H A DReaderWriterTRK.cpp167 std::string vertexShaderFile("track.vert"); in assign() local
172 …ef_ptr<osg::Shader> vertexShader = osgDB::readRefShaderFile(osg::Shader::VERTEX, vertexShaderFile); in assign()
/dports/games/shockolate/systemshock-0.8.2-43-ga9eb1b93/src/MacSrc/
H A DOpenGL.cc224 static int CreateShader(const char *vertexShaderFile, const char *fragmentShaderFile, Shader *outSh… in CreateShader() argument
225 GLuint vertShader = loadShader(GL_VERTEX_SHADER, vertexShaderFile); in CreateShader()
229 ERROR("Could not create shader %s : %s", vertexShaderFile, fragmentShaderFile); in CreateShader()
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osgSim/
H A DOverlayNode.cpp1029 std::string vertexShaderFile = osgDB::findDataFile("shaders/overlay_perspective_rtt.vert"); in getOverlayData() local
1030 if (!vertexShaderFile.empty()) in getOverlayData()
1032 program->addShader(osgDB::readRefShaderFile(osg::Shader::VERTEX, vertexShaderFile)); in getOverlayData()
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osgSim/
H A DOverlayNode.cpp1029 std::string vertexShaderFile = osgDB::findDataFile("shaders/overlay_perspective_rtt.vert");
1030 if (!vertexShaderFile.empty())
1032 program->addShader(osg::Shader::readShaderFile(osg::Shader::VERTEX, vertexShaderFile));
/dports/graphics/krita/krita-4.4.8/3rdparty/ext_qt/
H A D0007-Implement-a-manual-test-for-checking-is-HDR-features.patch359 + QFile vertexShaderFile(QString(":/") + "kis_gl_image_widget.vert");
360 + vertexShaderFile.open(QIODevice::ReadOnly);
361 + QString vertSource = vertexShaderFile.readAll();