diff options
author | Christoph Bumiller <[email protected]> | 2010-12-19 22:49:50 +0100 |
---|---|---|
committer | Christoph Bumiller <[email protected]> | 2010-12-19 22:53:47 +0100 |
commit | 9f2cf899578464a7448d7abec681bde42eb3d2f2 (patch) | |
tree | 727cb0623d66bf3e0e241387995b2d3f4d9f1779 /src/gallium/drivers/nvc0/nvc0_push2.c | |
parent | 608b3c4432f7b7b0c27fc22369e09c8b7d8cfc03 (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.c | 4 |
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 07dd7b56b90..1f4ba256c17 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; } |