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

  /external/deqp/modules/glshared/
glsRandomShaderCase.hpp 105 std::vector<rsg::VariableValue> m_uniforms; member in class:deqp::gls::RandomShaderCase
glsUniformBlockCase.hpp 196 void addUniform (const Uniform& uniform) { m_uniforms.push_back(uniform); }
198 inline Iterator begin (void) { return m_uniforms.begin(); }
199 inline ConstIterator begin (void) const { return m_uniforms.begin(); }
200 inline Iterator end (void) { return m_uniforms.end(); }
201 inline ConstIterator end (void) const { return m_uniforms.end(); }
206 std::vector<Uniform> m_uniforms; member in class:deqp::gls::ub::UniformBlock
  /external/deqp/framework/randomshaders/
rsgShader.hpp 110 std::vector<ShaderInput*>& getUniforms (void) { return m_uniforms; }
114 const std::vector<ShaderInput*>& getUniforms (void) const { return m_uniforms; }
124 std::vector<ShaderInput*> m_uniforms; member in class:rsg::Shader
  /external/deqp/external/openglcts/modules/common/
glcUniformBlockCase.hpp 281 m_uniforms.push_back(uniform);
286 return m_uniforms.begin();
290 return m_uniforms.begin();
294 return m_uniforms.end();
298 return m_uniforms.end();
304 std::vector<Uniform> m_uniforms; member in class:deqp::ub::UniformBlock
  /external/deqp/framework/opengl/simplereference/
sglrShaderProgram.hpp 176 std::vector<Uniform> m_uniforms; member in class:sglr::pdec::ShaderProgramDeclaration
245 std::vector<UniformSlot> m_uniforms; member in class:sglr::ShaderProgram
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktUniformBlockCase.hpp 204 void addUniform (const Uniform& uniform) { m_uniforms.push_back(uniform); }
206 inline Iterator begin (void) { return m_uniforms.begin(); }
207 inline ConstIterator begin (void) const { return m_uniforms.begin(); }
208 inline Iterator end (void) { return m_uniforms.end(); }
209 inline ConstIterator end (void) const { return m_uniforms.end(); }
214 std::vector<Uniform> m_uniforms; member in class:vkt::ubo::UniformBlock
  /external/deqp/modules/gles2/functional/
es2fUniformApiTests.cpp 272 int getNumUniforms (void) const { return (int)m_uniforms.size(); }
274 Uniform& getUniform (const int ndx) { return m_uniforms[ndx]; }
275 const Uniform& getUniform (const int ndx) const { return m_uniforms[ndx]; }
277 void addUniform (const Uniform& uniform) { m_uniforms.push_back(uniform); }
287 // Add the contents of m_uniforms and m_structTypes to receiver, and remove them from this one.
291 for (int i = 0; i < (int)m_uniforms.size(); i++)
292 receiver.addUniform(m_uniforms[i]);
293 m_uniforms.clear();
302 for (int i = 0; i < (int)m_uniforms.size(); i++)
303 if (typeContainsMatchingBasicType(m_uniforms[i].type, predicate)
486 vector<Uniform> m_uniforms; member in namespace:deqp::gles2::Functional
    [all...]
  /external/deqp/modules/gles3/functional/
es3fUniformApiTests.cpp 338 int getNumUniforms (void) const { return (int)m_uniforms.size(); }
340 Uniform& getUniform (const int ndx) { return m_uniforms[ndx]; }
341 const Uniform& getUniform (const int ndx) const { return m_uniforms[ndx]; }
343 void addUniform (const Uniform& uniform) { m_uniforms.push_back(uniform); }
353 // Add the contents of m_uniforms and m_structTypes to receiver, and remove them from this one.
357 for (int i = 0; i < (int)m_uniforms.size(); i++)
358 receiver.addUniform(m_uniforms[i]);
359 m_uniforms.clear();
368 for (int i = 0; i < (int)m_uniforms.size(); i++)
369 if (typeContainsMatchingBasicType(m_uniforms[i].type, predicate)
552 vector<Uniform> m_uniforms; member in namespace:deqp::gles3::Functional
    [all...]
  /external/deqp/modules/gles31/functional/
es31fProgramUniformTests.cpp 318 int getNumUniforms (void) const { return (int)m_uniforms.size(); }
320 Uniform& getUniform (const int ndx) { return m_uniforms[ndx]; }
321 const Uniform& getUniform (const int ndx) const { return m_uniforms[ndx]; }
323 void addUniform (const Uniform& uniform) { m_uniforms.push_back(uniform); }
333 // Add the contents of m_uniforms and m_structTypes to receiver, and remove them from this one.
337 for (int i = 0; i < (int)m_uniforms.size(); i++)
338 receiver.addUniform(m_uniforms[i]);
339 m_uniforms.clear();
348 for (int i = 0; i < (int)m_uniforms.size(); i++)
349 if (typeContainsMatchingBasicType(m_uniforms[i].type, predicate)
503 vector<Uniform> m_uniforms; member in class:deqp::gles31::Functional::__anon18754::UniformCollection
    [all...]
  /external/deqp/external/openglcts/modules/gl/
gl4cEnhancedLayoutsTests.hpp 582 DEFINE_VARIABLE_CLASS(Uniform, Variable::UNIFORM, m_uniforms);
595 Variable::PtrVector m_uniforms; member in struct:gl4cts::EnhancedLayouts::Utils::ShaderInterface
    [all...]

Completed in 1134 milliseconds