Lines Matching defs:r300
39 struct r300_context *r300,
85 fprintf(stderr, "r300 VP: cannot handle edgeflag output.\n");
91 if (r300->screen->caps.has_tcl) {
92 fprintf(stderr, "r300 VP: cannot handle clip vertex output.\n");
97 fprintf(stderr, "r300 VP: unknown vertex output semantic: %i.\n",
174 void r300_init_vs_outputs(struct r300_context *r300,
178 r300_shader_read_vs_outputs(r300, &vs->shader->info, &vs->shader->outputs);
181 void r300_translate_vertex_shader(struct r300_context *r300,
189 r300_init_vs_outputs(r300, shader);
195 DBG_ON(r300, DBG_VP) ? compiler.Base.Debug |= RC_DBG_LOG : 0;
198 compiler.Base.debug = &r300->debug;
199 compiler.Base.is_r500 = r300->screen->caps.is_r500;
200 compiler.Base.disable_optimizations = DBG_ON(r300, DBG_NO_OPT);
204 compiler.Base.needs_trig_input_transform = DBG_ON(r300, DBG_USE_TGSI);
207 compiler.Base.max_alu_insts = r300->screen->caps.is_r500 ? 1024 : 256;
210 DBG(r300, DBG_VP, "r300: Initial vertex program\n");
222 fprintf(stderr, "r300 VP: Cannot translate a shader. "
242 fprintf(stderr, "r300 VP: Compiler error:\n%sCorresponding draws will be"