summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nvc0/nvc0_push2.c
diff options
context:
space:
mode:
authorChristoph Bumiller <e0425955@student.tuwien.ac.at>2010-12-19 22:49:50 +0100
committerChristoph Bumiller <e0425955@student.tuwien.ac.at>2010-12-19 22:53:47 +0100
commit9f2cf899578464a7448d7abec681bde42eb3d2f2 (patch)
tree727cb0623d66bf3e0e241387995b2d3f4d9f1779 /src/gallium/drivers/nvc0/nvc0_push2.c
parent608b3c4432f7b7b0c27fc22369e09c8b7d8cfc03 (diff)
nvc0: s/INLIN_RING/IMMED_RING
Diffstat (limited to 'src/gallium/drivers/nvc0/nvc0_push2.c')
-rw-r--r--src/gallium/drivers/nvc0/nvc0_push2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/nvc0/nvc0_push2.c b/src/gallium/drivers/nvc0/nvc0_push2.c
index 07dd7b56b9..1f4ba256c1 100644
--- a/src/gallium/drivers/nvc0/nvc0_push2.c
+++ b/src/gallium/drivers/nvc0/nvc0_push2.c
@@ -161,7 +161,7 @@ emit_edgeflag(struct push_context *ctx, boolean enabled)
{
struct nouveau_channel *chan = ctx->nvc0->screen->base.channel;
- INLIN_RING(chan, RING_3D(EDGEFLAG_ENABLE), enabled);
+ IMMED_RING(chan, RING_3D(EDGEFLAG_ENABLE), enabled);
}
static void
@@ -322,7 +322,7 @@ nvc0_push_vbo2(struct nvc0_context *nvc0, const struct pipe_draw_info *info)
emit_elt32(&ctx, info->start, info->count);
break;
}
- INLIN_RING(nvc0->screen->base.channel, RING_3D(VERTEX_END_GL), 0);
+ IMMED_RING(nvc0->screen->base.channel, RING_3D(VERTEX_END_GL), 0);
prim |= NVC0_3D_VERTEX_BEGIN_GL_INSTANCE_NEXT;
}