Home
last modified time | relevance | path

Searched refs:otherShader (Results 1 – 7 of 7) sorted by relevance

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/modules/egl/
H A DteglGLES2SharingTests.cpp901 GLuint otherShader = (GLuint)-1; in renderResource() local
906 otherShader = m_gl.createShader(GL_FRAGMENT_SHADER); in renderResource()
908 GLU_CHECK_GLW_CALL(m_gl, shaderSource(otherShader, 1, &fragmentShader, DE_NULL)); in renderResource()
912 otherShader = m_gl.createShader(GL_VERTEX_SHADER); in renderResource()
914 GLU_CHECK_GLW_CALL(m_gl, shaderSource(otherShader, 1, &vertexShader, DE_NULL)); in renderResource()
921 GLU_CHECK_GLW_CALL(m_gl, compileShader(otherShader)); in renderResource()
924 GLU_CHECK_GLW_CALL(m_gl, getShaderiv(otherShader, GL_COMPILE_STATUS, &status)); in renderResource()
929 GLU_CHECK_GLW_CALL(m_gl, getShaderInfoLog(otherShader, 256, DE_NULL, buffer)); in renderResource()
955 GLU_CHECK_GLW_CALL(m_gl, attachShader(program, otherShader)); in renderResource()
958 GLU_CHECK_GLW_CALL(m_gl, deleteShader(otherShader)); in renderResource()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/modules/gles3/stress/
H A Des3sLongShaderTests.cpp389 …const glu::ShaderType otherShader = (m_shaderType == glu::SHADERTYPE_VERTEX) ? glu::SHADERTYPE_FR… in iterate() local
393 sources << glu::ShaderSource(otherShader, getConstShaderSource(otherShader)); in iterate()
/dports/graphics/instant-meshes/instant-meshes-0.0-42-g4a083f4/ext/nanogui/src/
H A Dglutil.cpp228 void GLShader::shareAttrib(const GLShader &otherShader, const std::string &name, const std::string … in shareAttrib() argument
230 auto it = otherShader.mBufferObjects.find(name); in shareAttrib()
231 if (it == otherShader.mBufferObjects.end()) in shareAttrib()
232 …throw std::runtime_error("shareAttribute(" + otherShader.mName + ", " + name + "): attribute not f… in shareAttrib()
/dports/x11-toolkits/nanogui/nanogui-e9ec8a1a9861cf578d9c6e85a6420080aa715c03/src/
H A Dglutil.cpp236 void GLShader::shareAttrib(const GLShader &otherShader, const std::string &name, const std::string … in shareAttrib() argument
238 auto it = otherShader.mBufferObjects.find(name); in shareAttrib()
239 if (it == otherShader.mBufferObjects.end()) in shareAttrib()
240 …throw std::runtime_error("shareAttribute(" + otherShader.mName + ", " + name + "): attribute not f… in shareAttrib()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/modules/gles31/functional/
H A Des31fNegativeShaderApiTests.cpp2286 GLuint otherShader = ctx.glCreateShader(shaderTypes[ndx]); in link_compute_shader() local
2294 ctx.glShaderSource(otherShader, 1, &otherShaderSource, DE_NULL); in link_compute_shader()
2296 ctx.glCompileShader(otherShader); in link_compute_shader()
2298 ctx.glAttachShader(program, otherShader); in link_compute_shader()
2301 ctx.glDeleteShader(otherShader); in link_compute_shader()
/dports/graphics/instant-meshes/instant-meshes-0.0-42-g4a083f4/ext/nanogui/include/nanogui/
H A Dglutil.h172 …void shareAttrib(const GLShader &otherShader, const std::string &name, const std::string &as = "");
/dports/x11-toolkits/nanogui/nanogui-e9ec8a1a9861cf578d9c6e85a6420080aa715c03/include/nanogui/
H A Dglutil.h200 …void shareAttrib(const GLShader &otherShader, const std::string &name, const std::string &as = "");