diff options
author | Viktor Novotný <[email protected]> | 2010-11-01 01:22:44 +0100 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2010-11-15 17:42:07 +0100 |
commit | 69f54d2a7e06210f28b46d20f74a906d9750a36e (patch) | |
tree | 700b16af11699b42bb5e0d085c825e01ebf2fd07 /src/mesa/drivers/dri/nouveau/nv20_state_raster.c | |
parent | f4efc256fd90beaff86321e4c6ce00f9be55092d (diff) |
dri/nouveau nv20: Use rules-ng-ng headers
Signed-off-by: Francisco Jerez <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/nouveau/nv20_state_raster.c')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nv20_state_raster.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nv20_state_raster.c b/src/mesa/drivers/dri/nouveau/nv20_state_raster.c index 0fc7a3259d7..4716952e17a 100644 --- a/src/mesa/drivers/dri/nouveau/nv20_state_raster.c +++ b/src/mesa/drivers/dri/nouveau/nv20_state_raster.c @@ -27,7 +27,7 @@ #include "nouveau_driver.h" #include "nouveau_context.h" #include "nouveau_gldefs.h" -#include "nouveau_class.h" +#include "nv20_3d.xml.h" #include "nv20_driver.h" void @@ -36,7 +36,7 @@ nv20_emit_logic_opcode(struct gl_context *ctx, int emit) struct nouveau_channel *chan = context_chan(ctx); struct nouveau_grobj *kelvin = context_eng3d(ctx); - BEGIN_RING(chan, kelvin, NV20TCL_COLOR_LOGIC_OP_ENABLE, 2); + BEGIN_RING(chan, kelvin, NV20_3D_COLOR_LOGIC_OP_ENABLE, 2); OUT_RING(chan, ctx->Color.ColorLogicOpEnabled ? 1 : 0); OUT_RING(chan, nvgl_logicop_func(ctx->Color.LogicOp)); } |