Age | Commit message (Collapse) | Author |
|
|
|
See r300ResetHwState.
|
|
This reverts commit bb3558e6517209086cf8426bbe4743da50351158.
This commit caused a regression reported by Markus Amsler
<markus.amsler@oribi.org>. Apparently these defines are required, although I'm
not sure why.
|
|
Doesn't actually change anything; just makes it easier to read.
|
|
|
|
|
|
|
|
|
|
|
|
The function just returns the hard-coded value (0x5555) even though we have no
idea what this means...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The r300EmitVec functions don't touch the buf member so the assertion isn't
needed here.
|
|
|
|
|
|
|
|
|
|
|
|
This required moving the r300Enable function but there are no actual changes.
|
|
|
|
|
|
|
|
I think this is correct, assuming no endian issues. See commmit
59a08923f51d4ed83effbfcd91473c9ee86465f1.
|
|
Supposedly you need to set these values for the interpolaters to work, but they
seem to work fine without these values.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
You can verify this is correct with the following code.
assert (0x043f ==
(R300_VTX_W0_FMT | R300_VPORT_X_SCALE_ENA | R300_VPORT_X_OFFSET_ENA
| R300_VPORT_Y_SCALE_ENA | R300_VPORT_Y_OFFSET_ENA |
R300_VPORT_Z_SCALE_ENA | R300_VPORT_Z_OFFSET_ENA));
|
|
|
|
This required reordering some of the functions which is why the diff is a little
larger.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
You can verify this is correct with the following code.
assert (0x00000001 == R300_INPUT_CNTL_0_COLOR);
assert (0x00000405 ==
(R300_INPUT_CNTL_POS | R300_INPUT_CNTL_COLOR |
R300_INPUT_CNTL_TC0));
|
|
This reverts commit 93881edb46fc95e1cfb4ded4e8a5db92612d3e4d.
|
|
|
|
|