Home | History | Annotate | Download | only in service

Lines Matching refs:element_index

71 // and sets element_index to 456. returns false if element expression was not a
74 const std::string& name, int* element_index, std::string* new_name) {
75 DCHECK(element_index);
78 *element_index = 0;
100 *element_index = index;
473 int element_index = 0;
475 data.queried_name, &element_index, &short_name);\
707 GLint element_index = GetArrayElementIndexFromFakeLocation(fake_location);
708 if (element_index < uniform_info.size) {
709 *real_location = uniform_info.element_locations[element_index];
710 *array_index = element_index;
748 int element_index = 0;
749 if (!GetUniformNameSansElement(name, &element_index, &short_name) ||
750 element_index != 0) {
889 GLint element_index = GetArrayElementIndexFromFakeLocation(fake_location);
890 if (element_index < info.size) {
891 count = std::min(info.size - element_index, count);
899 info.texture_units.begin() + element_index);