Lines Matching defs:operator
104 deUint32 operator* (void) const { return getShader(); }
108 Shader& operator= (const Shader& other);
145 deUint32 operator* (void) const { return getProgram(); }
149 Program& operator= (const Program& other);
174 ProgramPipeline& operator= (const ProgramPipeline& other);
209 ShaderProgram& operator= (const ShaderProgram& other);
224 tcu::TestLog& operator<< (tcu::TestLog& log, const ShaderInfo& shaderInfo);
225 tcu::TestLog& operator<< (tcu::TestLog& log, const ShaderProgramInfo& shaderProgramInfo);
226 tcu::TestLog& operator<< (tcu::TestLog& log, const ProgramSources& sources);
227 tcu::TestLog& operator<< (tcu::TestLog& log, const Shader& shader);
228 tcu::TestLog& operator<< (tcu::TestLog& log, const ShaderProgram& program);
361 ProgramSources& operator<< (const AttribLocationBinding& binding) { attribLocationBindings.push_back(binding); return *this; }
362 ProgramSources& operator<< (const TransformFeedbackMode& mode) { transformFeedbackBufferMode = mode.mode; return *this; }
363 ProgramSources& operator<< (const TransformFeedbackVarying& varying) { transformFeedbackVaryings.push_back(varying.name); return *this; }
364 ProgramSources& operator<< (const ShaderSource& shaderSource) { sources[shaderSource.shaderType].push_back(shaderSource.source); return *this; }
365 ProgramSources& operator<< (const ProgramSeparable& progSeparable) { separable = progSeparable.separable; return *this; }
368 ProgramSources& operator<< (const TransformFeedbackVaryings<Iterator>& varyings);
400 ShaderBinary& operator<< (const ShaderType& shaderType)
406 ShaderBinary& operator<< (const std::string& entryPoint)
412 ShaderBinary& operator<< (const SpecializationData& specData)
459 ProgramBinaries& operator<< (const ShaderBinary& shaderBinary) { binaries.push_back(shaderBinary); return *this; }
463 inline ProgramSources& ProgramSources::operator<< (const TransformFeedbackVaryings<Iterator>& varyings)