Home | History | Annotate | Download | only in libagl

Lines Matching refs:am

1153     array_machine_t& am = c->arrays;
1154 am.vertex.fetch = fetchNop;
1155 am.normal.fetch = currentNormal;
1156 am.color.fetch = currentColor;
1158 if (am.vertex.enable) {
1159 am.vertex.resolve();
1160 if (am.vertex.bo || am.vertex.pointer) {
1161 am.vertex.fetch = vertex_fct[am.vertex.size-2][am.vertex.type & 0xF];
1165 if (am.normal.enable) {
1166 am.normal.resolve();
1167 if (am.normal.bo || am.normal.pointer) {
1168 am.normal.fetch = normal_fct[am.normal.size-3][am.normal.type & 0xF];
1172 if (am.color.enable) {
1173 am.color.resolve();
1175 if (am.color.bo || am.color.pointer) {
1176 am.color.fetch = color_fct[am.color.size-3][am.color.type & 0xF];
1179 if (am.color.bo || am.color.pointer) {
1180 am.color.fetch = color_clamp_fct[am.color.size-3][am.color.type & 0xF];
1187 am.texture[i].fetch = currentTexCoord;
1191 if (am.texture[i].enable) {
1192 am.texture[i].resolve();
1193 if (am.texture[i].bo || am.texture[i].pointer) {
1194 am.texture[i].fetch = texture_fct[am.texture[i].size-2][am.texture[i].type & 0xF];
1203 am.tmu = i;