diff options
author | Corbin Simpson <[email protected]> | 2009-03-20 00:43:29 -0700 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2009-03-20 14:53:21 -0700 |
commit | 8066edb2a254d15ed92c2d350a7799adf3cca0d7 (patch) | |
tree | eb7199af6ff2eb8a5dadadb0dd8614ad29af8441 /src/gallium/drivers/r300/r300_surface.c | |
parent | f1429580848b471c487e55a9a81b904452f50df5 (diff) |
r300-gallium: Simplify/neaten up packet3.
Deck chairs on the Hindenburg. :3
Diffstat (limited to 'src/gallium/drivers/r300/r300_surface.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_surface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/r300/r300_surface.c b/src/gallium/drivers/r300/r300_surface.c index 86fe3fc4f97..db18975a10f 100644 --- a/src/gallium/drivers/r300/r300_surface.c +++ b/src/gallium/drivers/r300/r300_surface.c @@ -129,8 +129,8 @@ static void r300_surface_fill(struct pipe_context* pipe, ((h * 6) & R300_POINTSIZE_Y_MASK) | ((w * 6) << R300_POINTSIZE_X_SHIFT)); - /* XXX Packet3 */ - OUT_CS(CP_PACKET3(R200_3D_DRAW_IMMD_2, 8)); + /* Packet3 with our point vertex */ + OUT_CS_PKT3(R200_3D_DRAW_IMMD_2, 8); OUT_CS(R300_PRIM_TYPE_POINT | R300_PRIM_WALK_RING | (1 << R300_PRIM_NUM_VERTICES_SHIFT)); OUT_CS_32F(w / 2.0); |