Home | History | Annotate | Download | only in draw

Lines Matching refs:dvs

153                         struct draw_vertex_shader *dvs)
157 if (dvs)
159 draw->vs.vertex_shader = dvs;
160 draw->vs.num_vs_outputs = dvs->info.num_outputs;
161 draw->vs.position_output = dvs->position_output;
162 draw->vs.edgeflag_output = dvs->edgeflag_output;
163 draw->vs.clipvertex_output = dvs->clipvertex_output;
164 draw->vs.clipdistance_output[0] = dvs->clipdistance_output[0];
165 draw->vs.clipdistance_output[1] = dvs->clipdistance_output[1];
166 dvs->prepare( dvs, draw );
177 struct draw_vertex_shader *dvs)
181 for (i = 0; i < dvs->nr_variants; i++)
182 dvs->variant[i]->destroy( dvs->variant[i] );
184 dvs->nr_variants = 0;
186 dvs->delete( dvs );