Home
last modified time | relevance | path

Searched refs:MaxPatchVertices (Results 1 – 21 of 21) sorted by relevance

/third_party/mesa3d/src/compiler/glsl/
Dast_array_index.cpp126 return state->Const.MaxPatchVertices; in get_implicit_array_size()
135 return state->Const.MaxPatchVertices; in get_implicit_array_size()
Dglsl_parser_extras.h590 unsigned MaxPatchVertices; member
Dglsl_parser_extras.cpp187 this->Const.MaxPatchVertices = ctx->Const.MaxPatchVertices; in _mesa_glsl_parse_state()
1825 if (vertices > state->Const.MaxPatchVertices) { in set_shader_inout_layout()
Dbuiltin_variables.cpp1000 add_const("gl_MaxPatchVertices", state->Const.MaxPatchVertices); in generate_constants()
1617 add_variable("gl_in", array(per_vertex_in_type, state->Const.MaxPatchVertices), in generate_varyings()
Dstandalone.cpp326 ctx->Const.MaxPatchVertices = 32; in initialize_context()
Dast_to_hir.cpp4823 if (num_vertices > state->Const.MaxPatchVertices) { in handle_tess_ctrl_shader_output_decl()
4876 state->Const.MaxPatchVertices); in handle_tess_shader_input_decl()
4877 } else if (var->type->length != state->Const.MaxPatchVertices) { in handle_tess_shader_input_decl()
4881 state->Const.MaxPatchVertices); in handle_tess_shader_input_decl()
Dlinker.cpp2594 : consts->MaxPatchVertices; in resize_tes_inputs()
/third_party/glslang/Test/baseResults/
Dtest.conf62 MaxPatchVertices 32
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/vulkan/
DDeclarePerVertexBlocks.cpp368 arraySize = mResources.MaxPatchVertices; in declareDefaultGlOut()
383 uint32_t arraySize = mResources.MaxPatchVertices; in declareDefaultGlIn()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
Dglslang_wrapper.cpp84 outResources->maxPatchVertices = resources.MaxPatchVertices; in GetBuiltInResources()
DShaderLang.cpp329 resources->MaxPatchVertices = 32; in InitBuiltInResources()
DCompiler.cpp1324 << ":MaxPatchVertices:" << mResources.MaxPatchVertices in setResourceString()
DCollectVariables.cpp797 variableOut->arraySizes[0] = mResources.MaxPatchVertices; in setFieldOrVariableProperties()
DSymbolTable_ESSL_autogen.cpp25395 unionArray[0].setIConst(resources.MaxPatchVertices); in initializeBuiltInVariables()
25404 unionArray[0].setIConst(resources.MaxPatchVertices); in initializeBuiltInVariables()
25826 type_gl_inTCS->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
25832 type_gl_inTCSES3_2->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
25838 type_gl_outTCS->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
25845 type_gl_outTCSES3_2->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
25933 type_gl_inTES->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
25939 type_gl_inTESES3_2->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
25945 type_gl_outTES->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
25952 type_gl_outTESES3_2->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
DParseContext.cpp240 mMaxPatchVertices(resources.MaxPatchVertices), in TParseContext()
DSymbolTable_autogen.cpp40188 unionArray[0].setIConst(resources.MaxPatchVertices); in initializeBuiltInVariables()
40197 unionArray[0].setIConst(resources.MaxPatchVertices); in initializeBuiltInVariables()
40619 type_gl_inTCS->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
40625 type_gl_inTCSES3_2->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
40631 type_gl_outTCS->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
40638 type_gl_outTCSES3_2->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
40726 type_gl_inTES->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
40732 type_gl_inTESES3_2->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
40738 type_gl_outTES->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
40745 type_gl_outTESES3_2->makeArray(resources.MaxPatchVertices); in initializeBuiltInVariables()
/third_party/skia/third_party/externals/angle2/include/GLSLANG/
DShaderLang.h569 int MaxPatchVertices; member
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DCompiler.cpp263 mResources.MaxPatchVertices = caps.maxPatchVertices; in Compiler()
/third_party/mesa3d/src/mesa/main/
Dconsts_exts.h907 GLuint MaxPatchVertices; member
Dcontext.c590 consts->MaxPatchVertices = MAX_PATCH_VERTICES; in _mesa_init_constants()
Dshaderapi.c2767 if (value <= 0 || value > ctx->Const.MaxPatchVertices) { in _mesa_PatchParameteri()