Lines Matching refs:compileOptions
26 ShCompileOptions compileOptions) in initBuiltInFunctionEmulator() argument
28 if ((compileOptions & SH_EMULATE_ABS_INT_FUNCTION) != 0) in initBuiltInFunctionEmulator()
33 if ((compileOptions & SH_EMULATE_ISNAN_FLOAT_FUNCTION) != 0) in initBuiltInFunctionEmulator()
38 if ((compileOptions & SH_EMULATE_ATAN2_FLOAT_FUNCTION) != 0) in initBuiltInFunctionEmulator()
48 ShCompileOptions compileOptions, in translate() argument
57 writeExtensionBehavior(root, compileOptions); in translate()
61 WritePragma(sink, compileOptions, getPragma()); in translate()
67 if ((compileOptions & SH_FLATTEN_PRAGMA_STDGL_INVARIANT_ALL) != 0 && in translate()
69 !sh::RemoveInvariant(getShaderType(), getShaderVersion(), getOutputType(), compileOptions)) in translate()
96 if ((compileOptions & SH_REWRITE_TEXELFETCHOFFSET_TO_TEXELFETCH) != 0) in translate()
104 if ((compileOptions & SH_REWRITE_FLOAT_UNARY_MINUS_OPERATOR) != 0) in translate()
112 if ((compileOptions & SH_REWRITE_ROW_MAJOR_MATRICES) != 0 && getShaderVersion() >= 300) in translate()
217 getShaderType(), getShaderVersion(), getOutputType(), compileOptions); in translate()
231 bool TranslatorGLSL::shouldCollectVariables(ShCompileOptions compileOptions) in shouldCollectVariables() argument
233 return (compileOptions & SH_FLATTEN_PRAGMA_STDGL_INVARIANT_ALL) != 0 || in shouldCollectVariables()
234 TCompiler::shouldCollectVariables(compileOptions); in shouldCollectVariables()
251 void TranslatorGLSL::writeExtensionBehavior(TIntermNode *root, ShCompileOptions compileOptions) in writeExtensionBehavior() argument
297 EmitMultiviewGLSL(*this, compileOptions, iter.first, iter.second, sink); in writeExtensionBehavior()