mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-22 20:00:10 +01:00
i965: Rename 3DSTATE_DRAWRECT_INFO_I965 to 3DSTATE_DRAWING_RECTANGLE.
The documentation uses 3DSTATE_DRAWING_RECTANGLE, and we already had it defined in brw_defines.h; we were simply using an old #define from intel_reg.h. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
cb5e0ba2aa
commit
29a911c50e
2 changed files with 1 additions and 2 deletions
|
|
@ -46,7 +46,7 @@ static void upload_drawing_rect(struct brw_context *brw)
|
|||
struct gl_context *ctx = &intel->ctx;
|
||||
|
||||
BEGIN_BATCH(4);
|
||||
OUT_BATCH(_3DSTATE_DRAWRECT_INFO_I965);
|
||||
OUT_BATCH(_3DSTATE_DRAWING_RECTANGLE);
|
||||
OUT_BATCH(0); /* xmin, ymin */
|
||||
OUT_BATCH(((ctx->DrawBuffer->Width - 1) & 0xffff) |
|
||||
((ctx->DrawBuffer->Height - 1) << 16));
|
||||
|
|
|
|||
|
|
@ -49,7 +49,6 @@
|
|||
#define I1_LOAD_S(n) (1<<(4+n))
|
||||
|
||||
#define _3DSTATE_DRAWRECT_INFO (CMD_3D | (0x1d<<24) | (0x80<<16) | 0x3)
|
||||
#define _3DSTATE_DRAWRECT_INFO_I965 (CMD_3D | (3 << 27) | (1 << 24) | 0x2)
|
||||
|
||||
/** @{
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue