Home | History | Annotate | Download | only in service

Lines Matching defs:element_index

65 // and sets element_index to 456. returns false if element expression was not a
68 const std::string& name, int* element_index, std::string* new_name) {
69 DCHECK(element_index);
72 *element_index = 0;
94 *element_index = index;
392 int element_index = 0;
394 data.queried_name, &element_index, &short_name);\
657 GLint element_index = GetArrayElementIndexFromFakeLocation(fake_location);
658 if (element_index < uniform_info.size) {
659 *real_location = uniform_info.element_locations[element_index];
660 *array_index = element_index;
698 int element_index = 0;
699 if (!GetUniformNameSansElement(name, &element_index, &short_name) ||
700 element_index != 0) {
839 GLint element_index = GetArrayElementIndexFromFakeLocation(fake_location);
840 if (element_index < info.size) {
841 count = std::min(info.size - element_index, count);
849 info.texture_units.begin() + element_index);