Home
last modified time | relevance | path

Searched refs:uniformName (Results 1 – 25 of 82) sorted by relevance

1234

/third_party/skia/modules/skottie/src/effects/
DSkSLEffect.cpp90 const skjson::StringValue* uniformName = (*jprop)["nm"]; in SkSLEffectAdapter() local
91 if (!uniformName) { continue; } in SkSLEffectAdapter()
92 auto uniformTuple = std::make_tuple(SkString(uniformName->begin(), in SkSLEffectAdapter()
93 uniformName->size()), in SkSLEffectAdapter()
/third_party/flutter/skia/third_party/externals/angle2/src/libGL/
Dentry_points_gl_3_1_autogen.cpp173 GLchar *uniformName) in GetActiveUniformName() argument
178 program, uniformIndex, bufSize, (uintptr_t)length, (uintptr_t)uniformName); in GetActiveUniformName()
186 length, uniformName)); in GetActiveUniformName()
189 context->getActiveUniformName(program, uniformIndex, bufSize, length, uniformName); in GetActiveUniformName()
192 length, uniformName); in GetActiveUniformName()
Dentry_points_gl_3_1_autogen.h46 GLchar *uniformName);
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DGLSLTest.cpp3006 std::stringstream uniformName; in TEST_P() local
3007 uniformName << "test[" << innerIdx << "].data[" << outerIdx << "]"; in TEST_P()
3009 GLint uniformLocation = glGetUniformLocation(program.get(), uniformName.str().c_str()); in TEST_P()
4519 std::stringstream uniformName; in TEST_P() local
4520 uniformName << "test[" << i << "][" << j << "]"; in TEST_P()
4521 GLint uniformLocation = glGetUniformLocation(program.get(), uniformName.str().c_str()); in TEST_P()
4634 std::stringstream uniformName; in TEST_P() local
4635 uniformName << "test[" << i << "][" << j << "]"; in TEST_P()
4636 GLint uniformLocation = glGetUniformLocation(program.get(), uniformName.str().c_str()); in TEST_P()
5051 std::stringstream uniformName; in TEST_P() local
[all …]
DBindUniformLocationTest.cpp449 const char *uniformName, in linkProgramWithUniformLocation() argument
453 glBindUniformLocationCHROMIUM(program, uniformLocation, uniformName); in linkProgramWithUniformLocation()
DDrawBuffersTest.cpp919 char uniformName[20]; in TEST_P() local
920 snprintf(uniformName, sizeof uniformName, "value%u", attachmentIndex); in TEST_P()
921 uniforms[attachmentIndex] = glGetUniformLocation(program, uniformName); in TEST_P()
/third_party/flutter/skia/third_party/externals/angle2/src/tests/perf_tests/
DTexturesPerf.cpp159 std::stringstream uniformName; in initShaders() local
160 uniformName << "tex" << i; in initShaders()
162 GLint location = glGetUniformLocation(mProgram, uniformName.str().c_str()); in initShaders()
/third_party/skia/src/sksl/dsl/
DDSLVar.cpp62 const char* uniformName; in DSLVarBase() local
66 String(this->name()).c_str(), count, &uniformName).toIndex(); in DSLVarBase()
67 fName = uniformName; in DSLVarBase()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
DShaderD3D.cpp197 unsigned int ShaderD3D::getUniformRegister(const std::string &uniformName) const in getUniformRegister()
199 ASSERT(mUniformRegisterMap.count(uniformName) > 0); in getUniformRegister()
200 return mUniformRegisterMap.find(uniformName)->second; in getUniformRegister()
DShaderD3D.h54 unsigned int getUniformRegister(const std::string &uniformName) const;
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
DTexturesPerf.cpp200 std::stringstream uniformName; in initShaders() local
201 uniformName << "tex" << i; in initShaders()
203 GLint location = glGetUniformLocation(mProgram, uniformName.str().c_str()); in initShaders()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DvalidationGL31_autogen.h25 const GLchar *uniformName);
DContext_gl_3_autogen.h36 GLsizei *length, GLchar *uniformName); \
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
DContext_gl_3_1_autogen.h15 GLsizei *length, GLchar *uniformName); \
DvalidationGL31.cpp19 GLchar *uniformName) in ValidateGetActiveUniformName() argument
DvalidationGL31_autogen.h25 GLchar *uniformName);
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
DShaderD3D.cpp204 unsigned int ShaderD3D::getUniformRegister(const std::string &uniformName) const in getUniformRegister()
206 ASSERT(mUniformRegisterMap.count(uniformName) > 0); in getUniformRegister()
207 return mUniformRegisterMap.find(uniformName)->second; in getUniformRegister()
DShaderD3D.h54 unsigned int getUniformRegister(const std::string &uniformName) const;
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fSRGBDecodeTests.cpp212 UniformData (glw::GLuint uniformLocation, const std::string& uniformName) in UniformData()
214 , name (uniformName) in UniformData()
226 UniformToToggle (const int uniformProgramIdx, const std::string& uniformName) in UniformToToggle()
228 , name (uniformName) {} in UniformToToggle()
649 std::vector<glw::GLchar> uniformName(static_cast<int>(maxLen)); in SRGBTestProgram()
652 gl.getActiveUniform(this->getHandle(), idx, maxLen, NULL, &size, &type, &uniformName[0]); in SRGBTestProgram()
653 location = gl.getUniformLocation(this->getHandle(), &uniformName[0]); in SRGBTestProgram()
655 UniformData uniformData(location, std::string(&uniformName[0], strlen(&uniformName[0]))); in SRGBTestProgram()
868 …void setUniformToggle (const int programIdx, const std::string& uniformName, bool toggleDec…
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DProgramVk.cpp359 std::string uniformName = uniform.name; in initDefaultUniformLayoutMapping() local
363 uniformName = gl::StripLastArrayIndex(uniformName); in initDefaultUniformLayoutMapping()
364 ASSERT(uniformName.size() != uniform.name.size()); in initDefaultUniformLayoutMapping()
371 auto it = layoutMap[shaderType].find(uniformName); in initDefaultUniformLayoutMapping()
/third_party/skia/src/gpu/effects/
DGrSkSLFP.cpp87 const char* uniformName = nullptr; in emitCode() local
94 &uniformName); in emitCode()
96 return String(uniformName); in emitCode()
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/
DBindUniformLocationTest.cpp407 const char *uniformName, in linkProgramWithUniformLocation() argument
411 glBindUniformLocationCHROMIUM(program, uniformLocation, uniformName); in linkProgramWithUniformLocation()
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_buffer/
DesextcTextureBufferActiveUniformValidation.hpp128 const char* uniformName);
DesextcTextureBufferActiveUniformValidation.cpp59 glw::GLenum textureUniforType, const char* uniformName) in TextureParameters() argument
64 m_uniform_name = uniformName; in TextureParameters()
/third_party/flutter/skia/src/sksl/
DSkSLCPPCodeGenerator.cpp913 String uniformName = HCodeGenerator::FieldName(name) + "Var"; in writeSetData() local
919 this->writef(" if (%s.isValid()) {\n", uniformName.c_str()); in writeSetData()
947 mapper->setUniform(pdman, uniformName, valueVar).c_str(), indent.c_str()); in writeSetData()
950 mapper->setUniform(pdman, uniformName, valueVar).c_str()); in writeSetData()

1234