HomeSort by relevance Sort by last modified time
    Searched refs:uniformName (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/third_party/angle/src/compiler/translator/
TranslatorHLSL.cpp 39 bool TranslatorHLSL::hasUniform(const std::string &uniformName) const
41 return (mUniformRegisterMap.count(uniformName) > 0);
44 unsigned int TranslatorHLSL::getUniformRegister(const std::string &uniformName) const
46 ASSERT(hasUniform(uniformName));
47 return mUniformRegisterMap.find(uniformName)->second;
TranslatorHLSL.h 21 bool hasUniform(const std::string &uniformName) const;
22 unsigned int getUniformRegister(const std::string &uniformName) const;
ShaderLang.cpp 560 const char *uniformName,
563 if (!handle || !uniformName || !indexOut)
575 if (!translator->hasUniform(uniformName))
580 *indexOut = translator->getUniformRegister(uniformName);
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
ShaderD3D.h 40 unsigned int getUniformRegister(const std::string &uniformName) const;
ShaderD3D.cpp 354 unsigned int ShaderD3D::getUniformRegister(const std::string &uniformName) const
356 ASSERT(mUniformRegisterMap.count(uniformName) > 0);
357 return mUniformRegisterMap.find(uniformName)->second;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
ImageShader.java 317 public void setUniformValue(String uniformName, int value) {
319 int uniformHandle = getUniformLocation(uniformName);
321 GLToolbox.checkGlError("Set uniform value (" + uniformName + ")");
324 public void setUniformValue(String uniformName, float value) {
326 int uniformHandle = getUniformLocation(uniformName);
328 GLToolbox.checkGlError("Set uniform value (" + uniformName + ")");
331 public void setUniformValue(String uniformName, int[] values) {
332 ProgramUniform uniform = getProgramUniform(uniformName, true);
354 + "for uniform '" + uniformName + "'!");
356 GLToolbox.checkGlError("Set uniform value (" + uniformName + ")")
    [all...]
  /external/chromium_org/third_party/angle/include/GLSLANG/
ShaderLang.h 512 const char *uniformName,
  /external/chromium_org/third_party/angle/src/libGLESv2/
ProgramBinary.h 221 static bool linkValidateUniforms(InfoLog &infoLog, const std::string &uniformName, const sh::Uniform &vertexUniform, const sh::Uniform &fragmentUniform);
223 static bool linkValidateInterfaceBlockFields(InfoLog &infoLog, const std::string &uniformName, const sh::InterfaceBlockField &vertexUniform, const sh::InterfaceBlockField &fragmentUniform);
ProgramBinary.cpp     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLState.java 342 IGLProperty uniformName = new GLStringProperty(GLStateType.UNIFORM_NAME, "");
350 uniformName, uniformType, uniformSize, uniformValue);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
uniforms.c 768 GLchar *uniformName)
797 if (uniformName) {
798 _mesa_copy_string(uniformName, bufSize, length,
  /external/mesa3d/src/mesa/main/
uniforms.c 768 GLchar *uniformName)
797 if (uniformName) {
798 _mesa_copy_string(uniformName, bufSize, length,
  /external/deqp/modules/gles31/functional/
es31fLayoutBindingTests.cpp 218 const std::string& uniformName);
263 const std::string& uniformName)
268 , m_uniformName (uniformName)
585 const std::string& uniformName);
622 const std::string& uniformName)
632 , m_uniformName (uniformName)
    [all...]
es31fNegativeStateApiTests.cpp 678 const GLchar* uniformName = "Block.blockVar";
686 ctx.glGetUniformIndices(shader, 1, &uniformName, &uniformIndices);
692 ctx.glGetUniformIndices(invalid, 1, &uniformName, &uniformIndices);
    [all...]
es31fSeparateShaderTests.cpp 1019 const string& uniformName,
    [all...]
  /external/deqp/modules/gles3/functional/
es3fNegativeStateApiTests.cpp 664 const GLchar* uniformName = "Block.blockVar";
672 glGetUniformIndices(shader, 1, &uniformName, &uniformIndices);
678 glGetUniformIndices(invalid, 1, &uniformName, &uniformIndices);
    [all...]
es3fUniformApiTests.cpp     [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderStateQueryTests.cpp     [all...]
  /external/deqp/framework/platform/null/
tcuNullRenderContextFuncs.inl     [all...]
  /external/deqp/framework/opengl/
gluCallLogWrapperApi.inl 299 void glGetActiveUniformName (glw::GLuint program, glw::GLuint uniformIndex, glw::GLsizei bufSize, glw::GLsizei* length, glw::GLchar* uniformName);
    [all...]
  /external/deqp/framework/opengl/wrapper/
glwApi.inl     [all...]
glwFunctionTypes.inl     [all...]
glwImpl.inl     [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/glapi/
glapitable.h     [all...]
glapitemp.h     [all...]

Completed in 943 milliseconds

1 2