diff options
Diffstat (limited to 'src/mesa/drivers/dri/nouveau/nouveau_util.h')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nouveau_util.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_util.h b/src/mesa/drivers/dri/nouveau/nouveau_util.h index 63566a63abc..d4cc5c4fb9c 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_util.h +++ b/src/mesa/drivers/dri/nouveau/nouveau_util.h @@ -171,22 +171,6 @@ get_viewport_translate(struct gl_context *ctx, float a[4]) a[2] = fb->_DepthMaxF * (vp->Far + vp->Near) / 2; } -static inline void -OUT_RINGb(struct nouveau_channel *chan, GLboolean x) -{ - OUT_RING(chan, x ? 1 : 0); -} - -static inline void -OUT_RINGm(struct nouveau_channel *chan, float m[16]) -{ - int i, j; - - for (i = 0; i < 4; i++) - for (j = 0; j < 4; j++) - OUT_RINGf(chan, m[4*j + i]); -} - static inline GLboolean is_color_operand(int op) { |