diff options
author | Eric Anholt <eric@anholt.net> | 2016-01-26 13:31:59 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2016-01-29 18:12:48 -0800 |
commit | 1fcb6f4cbf3d6514716435a0e79c0e6d53c31a3a (patch) | |
tree | 055fe8dea38ad25251bb21f409c66b9c2134d596 | |
parent | 9ef11f13af7f552dadb4a90c248e525a257e0a2c (diff) |
glamor: Drop dead *_from_x_coord_y() functions.
They've been dead since the yInverted removal
(e310387f443b6333edf02c8980daa303505382b4).
Signed-off-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Dave Airlie <airlied@redhat.com>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
-rw-r--r-- | glamor/glamor_utils.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/glamor/glamor_utils.h b/glamor/glamor_utils.h index d4366c146..875c935c5 100644 --- a/glamor/glamor_utils.h +++ b/glamor/glamor_utils.h @@ -36,10 +36,8 @@ #include "mipict.h" #define v_from_x_coord_x(_xscale_, _x_) ( 2 * (_x_) * (_xscale_) - 1.0) -#define v_from_x_coord_y(_yscale_, _y_) (-2 * (_y_) * (_yscale_) + 1.0) #define v_from_x_coord_y_inverted(_yscale_, _y_) (2 * (_y_) * (_yscale_) - 1.0) #define t_from_x_coord_x(_xscale_, _x_) ((_x_) * (_xscale_)) -#define t_from_x_coord_y(_yscale_, _y_) (1.0 - (_y_) * (_yscale_)) #define t_from_x_coord_y_inverted(_yscale_, _y_) ((_y_) * (_yscale_)) #define pixmap_priv_get_dest_scale(pixmap, _pixmap_priv_, _pxscale_, _pyscale_) \ |