Home | History | Annotate | Download | only in r300

Lines Matching defs:code

228     struct rc_constant_list *constants = &fs->shader->code.constants;
289 struct rc_constant_list *constants = &fs->shader->code.constants;
999 struct r300_vertex_program_code* code = &vs->code;
1001 code->length / 4;
1004 unsigned input_count = MAX2(util_bitcount(code->InputsRead), 1);
1005 unsigned output_count = MAX2(util_bitcount(code->OutputsWritten), 1);
1006 unsigned temp_count = MAX2(code->num_temporaries, 1);
1026 OUT_CS_ONE_REG(R300_VAP_PVS_UPLOAD_DATA, code->length);
1027 OUT_CS_TABLE(code->body.d, code->length);
1037 OUT_CS_REG(R300_VAP_PVS_FLOW_CNTL_OPC, code->fc_ops);
1040 OUT_CS_TABLE(code->fc_op_addrs.r500, R300_VS_MAX_FC_OPS * 2);
1043 OUT_CS_TABLE(code->fc_op_addrs.r300, R300_VS_MAX_FC_OPS);
1046 OUT_CS_TABLE(code->fc_loop_index, R300_VS_MAX_FC_OPS);
1060 int imm_end = vs->code.constants.Count;
1091 const float *data = vs->code.constants.Constants[i].u.Immediate;