HomeSort by relevance Sort by last modified time
    Searched defs:separable (Results 1 - 3 of 3) sorted by null

  /external/deqp/framework/opengl/
gluShaderProgram.cpp 247 int separable = GL_FALSE; local
249 m_gl.getProgramiv(m_program, GL_PROGRAM_SEPARABLE, &separable);
252 return (separable != GL_FALSE);
255 void Program::setSeparable (bool separable)
257 m_gl.programParameteri(m_program, GL_PROGRAM_SEPARABLE, separable);
363 if (sources.separable)
gluShaderProgram.hpp 136 void setSeparable (bool separable);
247 bool separable; member in struct:glu::ProgramSeparable
248 explicit ProgramSeparable (bool separable_) : separable(separable_) {}
306 bool separable; member in struct:glu::ProgramSources
308 ProgramSources (void) : transformFeedbackBufferMode(0), separable(false) {}
314 ProgramSources& operator<< (const ProgramSeparable& progSeparable) { separable = progSeparable.separable; return *this; }
  /external/deqp/external/openglcts/modules/gles31/
es31cSeparateShaderObjsTests.cpp 95 * * Test with program that isn't separable. Expect INVALID_OPERATION GL error.
278 * * Test creating separable shader objects both by
281 * * Test that separable program can contain and links properly if there are
538 int separable = GL_FALSE; local
542 gl.getProgramiv(program, GL_PROGRAM_SEPARABLE, &separable);
546 return (program != 0) && (separable == expectedSep) && (linked == expectedLink);
744 // Make separable and relink
793 // Program that is not separable
925 // Make separable and relin
1057 int separable; local
    [all...]

Completed in 367 milliseconds