Home
last modified time | relevance | path

Searched refs:ProgramResourceList (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/mesa3d/src/mesa/main/
H A Dshader_query.cpp259 struct gl_program_resource *res = shProg->data->ProgramResourceList; in _mesa_count_active_attribs()
279 struct gl_program_resource *res = shProg->data->ProgramResourceList; in _mesa_longest_attribute_name_length()
691 res = shProg->data->ProgramResourceList; in _mesa_program_resource_find_name()
817 struct gl_program_resource *res = shProg->data->ProgramResourceList; in program_resource_find_binding_offset()
851 res = shProg->data->ProgramResourceList; in program_resource_find_binding_offset()
908 if (&shProg->data->ProgramResourceList[i] == res) in calc_resource_index()
910 if (shProg->data->ProgramResourceList[i].Type == res->Type) in calc_resource_index()
951 struct gl_program_resource *res = shProg->data->ProgramResourceList; in program_resource_find_data()
966 struct gl_program_resource *res = shProg->data->ProgramResourceList; in _mesa_program_resource_find_index()
1756 if (shProg->data->ProgramResourceList[i].Type == programInterface) in _mesa_get_program_interfaceiv()
[all …]
H A Dshader_types.h344 struct gl_program_resource *ProgramResourceList; member
/aosp_15_r20/external/mesa3d/src/compiler/glsl/
H A Dlinker_util.cpp145 prog->data->ProgramResourceList = in link_util_add_program_resource()
147 prog->data->ProgramResourceList, in link_util_add_program_resource()
151 if (!prog->data->ProgramResourceList) { in link_util_add_program_resource()
157 &prog->data->ProgramResourceList[prog->data->NumProgramResourceList]; in link_util_add_program_resource()
H A Dserialize.cpp1003 blob_write_uint32(metadata, prog->data->ProgramResourceList[i].Type); in write_program_resource_list()
1006 prog->data->ProgramResourceList[i].Type == GL_UNIFORM_BLOCK ? in write_program_resource_list()
1010 &prog->data->ProgramResourceList[i], in write_program_resource_list()
1013 &prog->data->ProgramResourceList[i].StageReferences, in write_program_resource_list()
1014 sizeof(prog->data->ProgramResourceList[i].StageReferences)); in write_program_resource_list()
1028 prog->data->ProgramResourceList = in read_program_resource_list()
1033 prog->data->ProgramResourceList[i].Type = blob_read_uint32(metadata); in read_program_resource_list()
1035 &prog->data->ProgramResourceList[i]); in read_program_resource_list()
1037 (uint8_t *) &prog->data->ProgramResourceList[i].StageReferences, in read_program_resource_list()
1038 sizeof(prog->data->ProgramResourceList[i].StageReferences)); in read_program_resource_list()
H A Dgl_nir_linker.c937 if (prog->data->ProgramResourceList) { in init_program_resource_list()
938 ralloc_free(prog->data->ProgramResourceList); in init_program_resource_list()
939 prog->data->ProgramResourceList = NULL; in init_program_resource_list()