diff options
author | Eric Engestrom <[email protected]> | 2017-06-01 14:48:06 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2017-06-07 01:18:09 +0100 |
commit | 63a8a88ac4b91a90ee7484b34abeb86e529234e7 (patch) | |
tree | 957709652b3329783acb94fd9921bd8e26d87b63 /src/mesa/drivers | |
parent | f0b82bc5450b0f12290875f7ab01b22eb0115e83 (diff) |
tree-wide: remove trailing backslash
Simple search for a backslash followed by two newlines.
If one of the newlines were to be removed, this would cause issues, so
let's just remove these trailing backslashes.
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r-- | src/mesa/drivers/dri/r200/r200_vertprog.c | 2 | ||||
-rw-r--r-- | src/mesa/drivers/x11/xmesaP.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_vertprog.c b/src/mesa/drivers/dri/r200/r200_vertprog.c index 100b715f9b0..bb8550332b3 100644 --- a/src/mesa/drivers/dri/r200/r200_vertprog.c +++ b/src/mesa/drivers/dri/r200/r200_vertprog.c @@ -350,7 +350,7 @@ static unsigned long op_operands(enum prog_opcode opcode) ((t_src_class(a.File) == VSF_IN_CLASS_PARAM && \ t_src_class(b.File) == VSF_IN_CLASS_PARAM) || \ (t_src_class(a.File) == VSF_IN_CLASS_ATTR && \ - t_src_class(b.File) == VSF_IN_CLASS_ATTR))) \ + t_src_class(b.File) == VSF_IN_CLASS_ATTR))) /* fglrx on rv250 codes up unused sources as follows: unused but necessary sources are same as previous source, zero-ed out. diff --git a/src/mesa/drivers/x11/xmesaP.h b/src/mesa/drivers/x11/xmesaP.h index 6cd020f2ed3..9320442f46a 100644 --- a/src/mesa/drivers/x11/xmesaP.h +++ b/src/mesa/drivers/x11/xmesaP.h @@ -249,7 +249,7 @@ struct xmesa_buffer { #define PACK_TRUECOLOR( PIXEL, R, G, B ) \ PIXEL = xmesa->xm_visual->RtoPixel[R] \ | xmesa->xm_visual->GtoPixel[G] \ - | xmesa->xm_visual->BtoPixel[B]; \ + | xmesa->xm_visual->BtoPixel[B]; /** |