diff options
author | Tom Stellard <[email protected]> | 2011-06-15 08:00:53 -0700 |
---|---|---|
committer | Tom Stellard <[email protected]> | 2011-09-16 17:35:46 -0700 |
commit | e945fb04d04c33da5e77d22d739c5740a522a61e (patch) | |
tree | 0665be036c5a639b30a0a5707ca94c35a63e38df /src/gallium/drivers/r300/r300_vs.c | |
parent | 1e5aaaa138d87a3e3bc53f6e4c18b1842b752dea (diff) |
r300/compiler: Add support for the output modifier (OMOD)
Diffstat (limited to 'src/gallium/drivers/r300/r300_vs.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_vs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/r300/r300_vs.c b/src/gallium/drivers/r300/r300_vs.c index a5e8fd680ff..1eef071c87f 100644 --- a/src/gallium/drivers/r300/r300_vs.c +++ b/src/gallium/drivers/r300/r300_vs.c @@ -210,6 +210,7 @@ void r300_translate_vertex_shader(struct r300_context *r300, compiler.Base.disable_optimizations = DBG_ON(r300, DBG_NO_OPT); compiler.Base.has_half_swizzles = FALSE; compiler.Base.has_presub = FALSE; + compiler.Base.has_omod = FALSE; compiler.Base.max_temp_regs = 32; compiler.Base.max_constants = 256; compiler.Base.max_alu_insts = r300->screen->caps.is_r500 ? 1024 : 256; |