diff options
author | Michal Krol <[email protected]> | 2009-12-03 12:25:49 +0100 |
---|---|---|
committer | Michal Krol <[email protected]> | 2009-12-03 12:25:49 +0100 |
commit | 72befaaae5fd9555e1f6ccbd6a74c0d640fc2929 (patch) | |
tree | 7644f87ee46ff0adf58c81e3d8082d544579cce1 /src/gallium/drivers/nv50/nv50_vbo.c | |
parent | 018f33a328a05bd7a2094103eb7bbafc8595e6b1 (diff) |
Remove pf_swizzle_* internal macros.
Diffstat (limited to 'src/gallium/drivers/nv50/nv50_vbo.c')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_vbo.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv50/nv50_vbo.c b/src/gallium/drivers/nv50/nv50_vbo.c index db54380241f..4b8783899e6 100644 --- a/src/gallium/drivers/nv50/nv50_vbo.c +++ b/src/gallium/drivers/nv50/nv50_vbo.c @@ -24,6 +24,8 @@ #include "pipe/p_state.h" #include "pipe/p_inlines.h" +#include "util/u_format.h" + #include "nv50_context.h" static boolean @@ -131,7 +133,7 @@ nv50_vbo_vtxelt_to_hw(struct pipe_vertex_element *ve) return 0x24e80000; } - if (pf_swizzle_x(pf) == 2) /* BGRA */ + if (util_format_description(pf)->swizzle[0] == UTIL_FORMAT_SWIZZLE_Z) /* BGRA */ hw_size |= (1 << 31); /* no real swizzle bits :-( */ return (hw_type | hw_size); |