Searched refs:debugOptions (Results 1 – 4 of 4) sorted by relevance
/external/deqp-deps/glslang/glslang/GenericCodeGen/ |
D | CodeGen.cpp | 44 … TGenericCompiler(EShLanguage l, int dOptions) : TCompiler(l, infoSink), debugOptions(dOptions) { } in TGenericCompiler() 47 int debugOptions; member in TGenericCompiler 55 TCompiler* ConstructCompiler(EShLanguage language, int debugOptions) in ConstructCompiler() argument 57 return new TGenericCompiler(language, debugOptions); in ConstructCompiler()
|
D | Link.cpp | 47 TGenericLinker(EShExecutable e, int dOptions) : TLinker(e, infoSink), debugOptions(dOptions) { } in TGenericLinker() 51 int debugOptions; member in TGenericLinker 63 TShHandleBase* ConstructLinker(EShExecutable executable, int debugOptions) in ConstructLinker() argument 65 return new TGenericLinker(executable, debugOptions); in ConstructLinker()
|
/external/deqp-deps/glslang/glslang/Public/ |
D | ShaderLang.h | 271 SH_IMPORT_EXPORT ShHandle ShConstructCompiler(const EShLanguage, int debugOptions); // one per sha… 272 SH_IMPORT_EXPORT ShHandle ShConstructLinker(const EShExecutable, int debugOptions); // one per sha… 290 int debugOptions,
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | ShaderLang.cpp | 1290 ShHandle ShConstructCompiler(const EShLanguage language, int debugOptions) in ShConstructCompiler() argument 1295 TShHandleBase* base = static_cast<TShHandleBase*>(ConstructCompiler(language, debugOptions)); in ShConstructCompiler() 1300 ShHandle ShConstructLinker(const EShExecutable executable, int debugOptions) in ShConstructLinker() argument 1305 TShHandleBase* base = static_cast<TShHandleBase*>(ConstructLinker(executable, debugOptions)); in ShConstructLinker()
|