diff options
author | Mathias Fröhlich <[email protected]> | 2018-01-27 16:07:22 +0100 |
---|---|---|
committer | Mathias Fröhlich <[email protected]> | 2018-02-01 22:39:06 +0100 |
commit | 38b41fd718cfffd11dab637d9d0cbd6c2a30b2c2 (patch) | |
tree | 24910d5640ca92b20285f40cda11279fca976468 /src/mesa/drivers/dri/nouveau/nouveau_render_t.c | |
parent | f37e29ac224887f1b4f0cb7c61e47fb4bc6671e1 (diff) |
mesa: Use defines for the aliased material array attributes.
Instead of just assuming that the material attributes
just overlap with the generic attributes 0-12, give
them symbolic defines so that we can easier move them
to an other range.
Signed-off-by: Mathias Fröhlich <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/nouveau/nouveau_render_t.c')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nouveau_render_t.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_render_t.c b/src/mesa/drivers/dri/nouveau/nouveau_render_t.c index db60b59c8fc..5699f38f4dc 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_render_t.c +++ b/src/mesa/drivers/dri/nouveau/nouveau_render_t.c @@ -188,7 +188,7 @@ static void TAG(emit_material)(struct gl_context *ctx, struct nouveau_array *a, const void *v) { - int attr = a->attr - VERT_ATTRIB_GENERIC0; + int attr = a->attr - VERT_ATTRIB_MAT(0); int state = ((int []) { NOUVEAU_STATE_MATERIAL_FRONT_AMBIENT, NOUVEAU_STATE_MATERIAL_BACK_AMBIENT, |