diff options
author | Eric Anholt <[email protected]> | 2010-07-01 10:09:58 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-07-01 11:07:23 -0700 |
commit | 8a1f186cc55979bb9df0a88b48da8d81460c3e7c (patch) | |
tree | 7a39126f77b75f94c09f441fdbca6c2be57d34cb /src/glsl/Makefile | |
parent | 9acf618f24428eba72650c0e328e7ed52986728e (diff) |
glsl2: Add a pass to convert mod(a, b) to b * fract(a/b).
This is used by the Mesa IR backend to implement mod, fixing glsl-fs-mod.
Diffstat (limited to 'src/glsl/Makefile')
-rw-r--r-- | src/glsl/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/Makefile b/src/glsl/Makefile index f4e32b91857..a709bf7121e 100644 --- a/src/glsl/Makefile +++ b/src/glsl/Makefile @@ -40,6 +40,7 @@ CXX_SOURCES = \ ir_hierarchical_visitor.cpp \ ir_hv_accept.cpp \ ir_if_simplification.cpp \ + ir_mod_to_fract.cpp \ ir_print_visitor.cpp \ ir_reader.cpp \ ir_swizzle_swizzle.cpp \ |