mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-16 03:18:06 +02:00
Revert "r300g: fix rendering with a non-zero index bias in draw_elements_immediate"
This reverts commit b9c7773e0d.
It breaks more things than it fixes.
This commit is contained in:
parent
07210d5c77
commit
b9cc9166cf
1 changed files with 1 additions and 3 deletions
|
|
@ -545,9 +545,7 @@ static void r300_draw_elements_immediate(struct r300_context *r300,
|
|||
PREP_INDEXED, NULL, 2+count_dwords, 0, info->index_bias, -1))
|
||||
return;
|
||||
|
||||
r300_emit_draw_init(r300, info->mode,
|
||||
info->min_index + info->index_bias,
|
||||
info->max_index + info->index_bias);
|
||||
r300_emit_draw_init(r300, info->mode, info->min_index, info->max_index);
|
||||
|
||||
BEGIN_CS(2 + count_dwords);
|
||||
OUT_CS_PKT3(R300_PACKET3_3D_DRAW_INDX_2, count_dwords);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue