diff options
author | marha <marha@users.sourceforge.net> | 2014-01-15 22:07:45 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2014-01-15 22:08:19 +0100 |
commit | 84964de9dd2f385a51f91aa54e464c37a116e8ef (patch) | |
tree | 165398b241bb728f5ff71966855b5fba0c5f1f54 /mesalib/src/glsl/ir_builder.cpp | |
parent | b7f01cb1f6cfd1ec301f650a073436c91ec614aa (diff) | |
download | vcxsrv-84964de9dd2f385a51f91aa54e464c37a116e8ef.tar.gz vcxsrv-84964de9dd2f385a51f91aa54e464c37a116e8ef.tar.bz2 vcxsrv-84964de9dd2f385a51f91aa54e464c37a116e8ef.zip |
Solved compiler errors and warnings
Diffstat (limited to 'mesalib/src/glsl/ir_builder.cpp')
-rw-r--r-- | mesalib/src/glsl/ir_builder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesalib/src/glsl/ir_builder.cpp b/mesalib/src/glsl/ir_builder.cpp index 1e0dd5419..7f41ed69e 100644 --- a/mesalib/src/glsl/ir_builder.cpp +++ b/mesalib/src/glsl/ir_builder.cpp @@ -506,7 +506,7 @@ b2f(operand a) } ir_expression * -fma_mesa(operand a, operand b, operand c) +fma(operand a, operand b, operand c) { return expr(ir_triop_fma, a, b, c); } |