diff options
author | Brian Paul <[email protected]> | 2008-04-30 16:50:17 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-04-30 16:51:53 -0600 |
commit | 54f94a790e4488445347abcff9a636a9c440d7f9 (patch) | |
tree | 6f64698c8922d1c79117b769a6f553d5b5a24058 /src/gallium/auxiliary/draw/draw_pipe_pstipple.c | |
parent | 8d45576ec5110d39fe48c2f65b04db16ce845968 (diff) |
gallium: use the newer PIPE_FORMAT_x_UNORM format names
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_pipe_pstipple.c')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_pipe_pstipple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pipe_pstipple.c b/src/gallium/auxiliary/draw/draw_pipe_pstipple.c index d1d63d73bea..c4de9d2698e 100644 --- a/src/gallium/auxiliary/draw/draw_pipe_pstipple.c +++ b/src/gallium/auxiliary/draw/draw_pipe_pstipple.c @@ -417,7 +417,7 @@ pstip_create_texture(struct pstip_stage *pstip) memset(&texTemp, 0, sizeof(texTemp)); texTemp.target = PIPE_TEXTURE_2D; - texTemp.format = PIPE_FORMAT_U_A8; /* XXX verify supported by driver! */ + texTemp.format = PIPE_FORMAT_A8_UNORM; /* XXX verify supported by driver! */ texTemp.last_level = 0; texTemp.width[0] = 32; texTemp.height[0] = 32; |