Home | History | Annotate | Download | only in svga

Lines Matching refs:atoms

50 /* Atoms to update hardware state prior to emitting a clear or draw
62 /* Atoms to update hardware state prior to emitting a draw packet.
123 const struct svga_tracked_state *atoms[],
137 * state atoms are ordered correctly in the list.
144 for (i = 0; atoms[i] != NULL; i++) {
147 assert(atoms[i]->dirty);
148 assert(atoms[i]->update);
150 if (check_state(*state, atoms[i]->dirty)) {
152 debug_printf("update: %s\n", atoms[i]->name);
153 ret = atoms[i]->update( svga, *state );
165 atoms[i]->name);
170 accumulate_state(&examined, atoms[i]->dirty);
174 for (i = 0; atoms[i] != NULL; i++) {
175 if (check_state(*state, atoms[i]->dirty)) {
176 ret = atoms[i]->update( svga, *state );