/third_party/skia/third_party/externals/angle2/include/GLSLANG/ |
D | ShaderLang.h | 605 using ShHandle = void *; variable 634 const std::string &GetBuiltInResourcesString(const ShHandle handle); 647 ShHandle ConstructCompiler(sh::GLenum type, 651 void Destruct(ShHandle handle); 662 bool Compile(const ShHandle handle, 668 void ClearResults(const ShHandle handle); 671 int GetShaderVersion(const ShHandle handle); 674 ShShaderOutput GetShaderOutputType(const ShHandle handle); 679 const std::string &GetInfoLog(const ShHandle handle); 685 const std::string &GetObjectCode(const ShHandle handle); [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/include/GLSLANG/ |
D | ShaderLang.h | 501 using ShHandle = void *; variable 529 const std::string &GetBuiltInResourcesString(const ShHandle handle); 542 ShHandle ConstructCompiler(sh::GLenum type, 546 void Destruct(ShHandle handle); 572 bool Compile(const ShHandle handle, 578 void ClearResults(const ShHandle handle); 581 int GetShaderVersion(const ShHandle handle); 584 ShShaderOutput GetShaderOutputType(const ShHandle handle); 589 const std::string &GetInfoLog(const ShHandle handle); 594 const std::string &GetObjectCode(const ShHandle handle); [all …]
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | ShaderLang.cpp | 57 TCompiler *GetCompilerFromHandle(ShHandle handle) in GetCompilerFromHandle() 69 const std::vector<VarT> *GetShaderVariables(const ShHandle handle) in GetShaderVariables() 81 TranslatorHLSL *GetTranslatorHLSLFromHandle(ShHandle handle) in GetTranslatorHLSLFromHandle() 348 ShHandle ConstructCompiler(sh::GLenum type, in ConstructCompiler() 375 void Destruct(ShHandle handle) in Destruct() 386 const std::string &GetBuiltInResourcesString(const ShHandle handle) in GetBuiltInResourcesString() 400 bool Compile(const ShHandle handle, in Compile() 411 void ClearResults(const ShHandle handle) in ClearResults() 418 int GetShaderVersion(const ShHandle handle) in GetShaderVersion() 425 ShShaderOutput GetShaderOutputType(const ShHandle handle) in GetShaderOutputType() [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
D | ShaderLang.cpp | 82 TCompiler *GetCompilerFromHandle(ShHandle handle) in GetCompilerFromHandle() 94 const std::vector<VarT> *GetShaderVariables(const ShHandle handle) in GetShaderVariables() 106 TranslatorHLSL *GetTranslatorHLSLFromHandle(ShHandle handle) in GetTranslatorHLSLFromHandle() 298 ShHandle ConstructCompiler(sh::GLenum type, in ConstructCompiler() 325 void Destruct(ShHandle handle) in Destruct() 336 const std::string &GetBuiltInResourcesString(const ShHandle handle) in GetBuiltInResourcesString() 350 bool Compile(const ShHandle handle, in Compile() 361 void ClearResults(const ShHandle handle) in ClearResults() 368 int GetShaderVersion(const ShHandle handle) in GetShaderVersion() 375 ShShaderOutput GetShaderOutputType(const ShHandle handle) in GetShaderOutputType() [all …]
|
/third_party/glslang/glslang/Public/ |
D | ShaderLang.h | 315 typedef void* ShHandle; typedef 321 GLSLANG_EXPORT ShHandle ShConstructCompiler(const EShLanguage, int debugOptions); // one per shader 322 GLSLANG_EXPORT ShHandle ShConstructLinker(const EShExecutable, int debugOptions); // one per shade… 323 GLSLANG_EXPORT ShHandle ShConstructUniformMap(); // one per uniform namespace (curr… 324 GLSLANG_EXPORT void ShDestruct(ShHandle); 334 const ShHandle, 347 const ShHandle, // linker object 348 const ShHandle h[], // compiler objects to link together 355 GLSLANG_EXPORT void ShSetEncryptionMethod(ShHandle); 361 GLSLANG_EXPORT const char* ShGetInfoLog(const ShHandle); [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/compiler_tests/ |
D | ShaderVariable_test.cpp | 220 ShHandle compiler = sh::ConstructCompiler(GL_VERTEX_SHADER, SH_GLES2_SPEC, in TEST() 222 EXPECT_NE(static_cast<ShHandle>(0), compiler); in TEST() 243 ShHandle compiler = sh::ConstructCompiler(GL_VERTEX_SHADER, SH_GLES2_SPEC, in TEST() 245 EXPECT_NE(static_cast<ShHandle>(0), compiler); in TEST() 278 ShHandle compiler = sh::ConstructCompiler(GL_VERTEX_SHADER, SH_GLES2_SPEC, in TEST() 280 EXPECT_NE(static_cast<ShHandle>(0), compiler); in TEST() 320 ShHandle compiler = sh::ConstructCompiler(GL_VERTEX_SHADER, SH_GLES2_SPEC, in TEST() 322 EXPECT_NE(static_cast<ShHandle>(0), compiler); in TEST() 363 ShHandle compiler = sh::ConstructCompiler(GL_VERTEX_SHADER, SH_GLES2_SPEC, in TEST() 365 EXPECT_NE(static_cast<ShHandle>(0), compiler); in TEST()
|
D | ExpressionLimit_test.cpp | 223 bool CheckShaderCompilation(ShHandle compiler, in CheckShaderCompilation() 261 ShHandle vertexCompiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F() 283 ShHandle vertexCompiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F() 308 ShHandle vertexCompiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F() 330 ShHandle vertexCompiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F() 352 ShHandle vertexCompiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F() 555 ShHandle compiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F() 577 ShHandle compiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F() 600 ShHandle compiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F()
|
D | ConstructCompiler_test.cpp | 19 ShHandle compiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, SH_WEBGL_SPEC, in TEST() 30 ShHandle compiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, SH_WEBGL_SPEC, in TEST() 42 ShHandle compiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, SH_WEBGL_SPEC, in TEST()
|
/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/ |
D | ShaderVariable_test.cpp | 220 ShHandle compiler = sh::ConstructCompiler(GL_VERTEX_SHADER, SH_GLES2_SPEC, in TEST() 222 EXPECT_NE(static_cast<ShHandle>(0), compiler); in TEST() 243 ShHandle compiler = sh::ConstructCompiler(GL_VERTEX_SHADER, SH_GLES2_SPEC, in TEST() 245 EXPECT_NE(static_cast<ShHandle>(0), compiler); in TEST() 278 ShHandle compiler = sh::ConstructCompiler(GL_VERTEX_SHADER, SH_GLES2_SPEC, in TEST() 280 EXPECT_NE(static_cast<ShHandle>(0), compiler); in TEST() 320 ShHandle compiler = sh::ConstructCompiler(GL_VERTEX_SHADER, SH_GLES2_SPEC, in TEST() 322 EXPECT_NE(static_cast<ShHandle>(0), compiler); in TEST() 363 ShHandle compiler = sh::ConstructCompiler(GL_VERTEX_SHADER, SH_GLES2_SPEC, in TEST() 365 EXPECT_NE(static_cast<ShHandle>(0), compiler); in TEST()
|
D | ExpressionLimit_test.cpp | 223 bool CheckShaderCompilation(ShHandle compiler, in CheckShaderCompilation() 261 ShHandle vertexCompiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F() 283 ShHandle vertexCompiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F() 308 ShHandle vertexCompiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F() 330 ShHandle vertexCompiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F() 352 ShHandle vertexCompiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F() 555 ShHandle compiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F() 577 ShHandle compiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F() 600 ShHandle compiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, spec, output, &resources); in TEST_F()
|
D | ConstructCompiler_test.cpp | 19 ShHandle compiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, SH_WEBGL_SPEC, in TEST() 30 ShHandle compiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, SH_WEBGL_SPEC, in TEST() 42 ShHandle compiler = sh::ConstructCompiler(GL_FRAGMENT_SHADER, SH_WEBGL_SPEC, in TEST()
|
/third_party/flutter/skia/third_party/externals/angle2/samples/shader_translator/ |
D | shader_translator.cpp | 31 static bool CompileFile(char *fileName, ShHandle compiler, ShCompileOptions compileOptions); 34 static void PrintActiveVariables(ShHandle compiler); 76 ShHandle vertexCompiler = 0; in main() 77 ShHandle fragmentCompiler = 0; in main() 78 ShHandle computeCompiler = 0; in main() 79 ShHandle geometryCompiler = 0; in main() 257 ShHandle compiler = 0; in main() 438 bool CompileFile(char *fileName, ShHandle compiler, ShCompileOptions compileOptions) in CompileFile() 663 static void PrintActiveVariables(ShHandle compiler) in PrintActiveVariables()
|
/third_party/skia/third_party/externals/angle2/samples/shader_translator/ |
D | shader_translator.cpp | 36 static bool CompileFile(char *fileName, ShHandle compiler, ShCompileOptions compileOptions); 39 static void PrintActiveVariables(ShHandle compiler); 84 ShHandle vertexCompiler = 0; in main() 85 ShHandle fragmentCompiler = 0; in main() 86 ShHandle computeCompiler = 0; in main() 87 ShHandle geometryCompiler = 0; in main() 280 ShHandle compiler = 0; in main() 475 bool CompileFile(char *fileName, ShHandle compiler, ShCompileOptions compileOptions) in CompileFile() 700 static void PrintActiveVariables(ShHandle compiler) in PrintActiveVariables()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | Compiler.h | 53 ShCompilerInstance(ShHandle handle, ShShaderOutput outputType, ShaderType shaderType); 60 ShHandle getHandle(); 66 ShHandle mHandle;
|
D | Compiler.cpp | 210 ShHandle handle = sh::ConstructCompiler(ToGLenum(type), mSpec, mOutputType, &mResources); in getInstance() 238 ShCompilerInstance::ShCompilerInstance(ShHandle handle, in ShCompilerInstance() 273 ShHandle ShCompilerInstance::getHandle() in getHandle()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Compiler.h | 55 ShCompilerInstance(ShHandle handle, ShShaderOutput outputType, ShaderType shaderType); 62 ShHandle getHandle(); 68 ShHandle mHandle;
|
D | Compiler.cpp | 313 ShHandle handle = sh::ConstructCompiler(ToGLenum(type), mSpec, mOutputType, &mResources); in getInstance() 341 ShCompilerInstance::ShCompilerInstance(ShHandle handle, in ShCompilerInstance() 376 ShHandle ShCompilerInstance::getHandle() in getHandle()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | ShaderImpl.cpp | 43 TranslateTask(ShHandle handle, ShCompileOptions options, const std::string &source) in TranslateTask() 55 ShHandle getHandle() { return mHandle; } in getHandle() 58 ShHandle mHandle;
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | ShaderImpl.cpp | 44 TranslateTask(ShHandle handle, ShCompileOptions options, const std::string &source) in TranslateTask() 57 ShHandle getHandle() { return mHandle; } in getHandle() 60 ShHandle mHandle;
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
D | ShaderGL.cpp | 28 TranslateTaskGL(ShHandle handle, in TranslateTaskGL() 56 ShHandle getHandle() { return mHandle; } in getHandle() 59 ShHandle mHandle; 88 ShHandle handle = mTranslateTask->getHandle(); in postTranslate() 390 ShHandle handle = compilerInstance->getHandle(); in compile() 427 ShHandle handle = compilerInstance->getHandle(); in compile()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/ |
D | ShaderGL.cpp | 27 TranslateTaskGL(ShHandle handle, in TranslateTaskGL() 54 ShHandle getHandle() { return mHandle; } in getHandle() 57 ShHandle mHandle; 86 ShHandle handle = mTranslateTask->getHandle(); in postTranslate() 353 ShHandle handle = compilerInstance->getHandle(); in compile() 390 ShHandle handle = compilerInstance->getHandle(); in compile()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
D | ShaderMtl.mm | 30 TranslateTask(ShHandle handle, ShCompileOptions options, const std::string &source) 42 ShHandle getHandle() { return mHandle; } 45 ShHandle mHandle;
|
/third_party/glslang/glslang/MachineIndependent/ |
D | ShaderLang.cpp | 1357 ShHandle ShConstructCompiler(const EShLanguage language, int debugOptions) in ShConstructCompiler() 1367 ShHandle ShConstructLinker(const EShExecutable executable, int debugOptions) in ShConstructLinker() 1377 ShHandle ShConstructUniformMap() in ShConstructUniformMap() 1387 void ShDestruct(ShHandle handle) in ShDestruct() 1465 const ShHandle handle, in ShCompile() 1519 const ShHandle linkHandle, in ShLinkExt() 1520 const ShHandle compHandles[], in ShLinkExt() 1570 void ShSetEncryptionMethod(ShHandle handle) in ShSetEncryptionMethod() 1579 const char* ShGetInfoLog(const ShHandle handle) in ShGetInfoLog() 1602 const void* ShGetExecutable(const ShHandle handle) in ShGetExecutable() [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/ |
D | ShaderD3D.cpp | 26 TranslateTaskD3D(ShHandle handle, in TranslateTaskD3D() 52 ShHandle mHandle; 294 ShHandle compilerHandle = compiler->getHandle(); in compile()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/ |
D | ShaderD3D.cpp | 27 TranslateTaskD3D(ShHandle handle, in TranslateTaskD3D() 54 ShHandle mHandle; 321 ShHandle compilerHandle = compiler->getHandle(); in compile()
|