tex_unit compiler fixes
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
`define FIXED_HALF (`FIXED_ONE >> 1)
|
||||
`define FIXED_MASK (`FIXED_ONE - 1)
|
||||
|
||||
`define CLAMP(x,lo,hi) ((x < lo) ? lo : ((x > hi) ? hi : x))
|
||||
`define CLAMP(x,lo,hi) (($signed(x) < $signed(lo)) ? lo : ((x > hi) ? hi : x))
|
||||
|
||||
`define BLEND_FRAC_64 8
|
||||
|
||||
|
||||
Reference in New Issue
Block a user