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 <eric.engestrom@imgtec.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
This commit is contained in:

committed by
Eric Engestrom

parent
f0b82bc545
commit
63a8a88ac4
@@ -36,7 +36,7 @@
|
|||||||
|
|
||||||
// Gets bits for specified mask from specified src packed instance.
|
// Gets bits for specified mask from specified src packed instance.
|
||||||
#define AMD_HSA_BITS_GET(src, mask) \
|
#define AMD_HSA_BITS_GET(src, mask) \
|
||||||
((src & mask) >> mask ## _SHIFT) \
|
((src & mask) >> mask ## _SHIFT)
|
||||||
|
|
||||||
/* Every amd_*_code_t has the following properties, which are composed of
|
/* Every amd_*_code_t has the following properties, which are composed of
|
||||||
* a number of bit fields. Every bit field has a mask (AMD_CODE_PROPERTY_*),
|
* a number of bit fields. Every bit field has a mask (AMD_CODE_PROPERTY_*),
|
||||||
|
@@ -621,7 +621,7 @@ nir_load_system_value(nir_builder *build, nir_intrinsic_op op, int index)
|
|||||||
nir_load_##name(nir_builder *build) \
|
nir_load_##name(nir_builder *build) \
|
||||||
{ \
|
{ \
|
||||||
return nir_load_system_value(build, nir_intrinsic_load_##name, 0); \
|
return nir_load_system_value(build, nir_intrinsic_load_##name, 0); \
|
||||||
} \
|
}
|
||||||
|
|
||||||
#include "nir_intrinsics.h"
|
#include "nir_intrinsics.h"
|
||||||
|
|
||||||
|
@@ -22,7 +22,7 @@
|
|||||||
default: \
|
default: \
|
||||||
break; \
|
break; \
|
||||||
} \
|
} \
|
||||||
} while (0) \
|
} while (0)
|
||||||
|
|
||||||
#define POINT(i0) gs_point(gs,i0)
|
#define POINT(i0) gs_point(gs,i0)
|
||||||
#define LINE(flags,i0,i1) gs_line(gs,i0,i1)
|
#define LINE(flags,i0,i1) gs_line(gs,i0,i1)
|
||||||
|
@@ -19,7 +19,7 @@
|
|||||||
return; \
|
return; \
|
||||||
default: \
|
default: \
|
||||||
break; \
|
break; \
|
||||||
} \
|
}
|
||||||
|
|
||||||
|
|
||||||
#define POINT(i0) prim_point(asmblr, i0)
|
#define POINT(i0) prim_point(asmblr, i0)
|
||||||
|
@@ -22,7 +22,7 @@
|
|||||||
default: \
|
default: \
|
||||||
break; \
|
break; \
|
||||||
} \
|
} \
|
||||||
} while (0) \
|
} while (0)
|
||||||
|
|
||||||
#define POINT(i0) so_point(so,i0)
|
#define POINT(i0) so_point(so,i0)
|
||||||
#define LINE(flags,i0,i1) so_line(so,i0,i1)
|
#define LINE(flags,i0,i1) so_line(so,i0,i1)
|
||||||
|
@@ -787,7 +787,7 @@ public: \
|
|||||||
} \
|
} \
|
||||||
unsigned get_##name() const { \
|
unsigned get_##name() const { \
|
||||||
return (value>>(first_bit))&((1ull<<((last_bit)-(first_bit)+1))-1); \
|
return (value>>(first_bit))&((1ull<<((last_bit)-(first_bit)+1))-1); \
|
||||||
} \
|
}
|
||||||
|
|
||||||
#define BC_RSRVD(fmt, last_bit, first_bit)
|
#define BC_RSRVD(fmt, last_bit, first_bit)
|
||||||
|
|
||||||
|
@@ -171,7 +171,7 @@ enum svga_stats_time {
|
|||||||
SVGA_STATS_PREFIX "SamplerView", \
|
SVGA_STATS_PREFIX "SamplerView", \
|
||||||
SVGA_STATS_PREFIX "SurfaceWriteFlush", \
|
SVGA_STATS_PREFIX "SurfaceWriteFlush", \
|
||||||
SVGA_STATS_PREFIX "TextureReadback", \
|
SVGA_STATS_PREFIX "TextureReadback", \
|
||||||
SVGA_STATS_PREFIX "VertexElement" \
|
SVGA_STATS_PREFIX "VertexElement"
|
||||||
|
|
||||||
#define SVGA_STATS_TIME_NAMES \
|
#define SVGA_STATS_TIME_NAMES \
|
||||||
SVGA_STATS_PREFIX "BuffersFlush", \
|
SVGA_STATS_PREFIX "BuffersFlush", \
|
||||||
|
@@ -283,7 +283,7 @@ void SwrStoreHotTileClear(
|
|||||||
sStoreTilesClearColorTable[B10G10R10A2_UINT] = StoreMacroTileClear<R32G32B32A32_FLOAT, B10G10R10A2_UINT>::StoreClear; \
|
sStoreTilesClearColorTable[B10G10R10A2_UINT] = StoreMacroTileClear<R32G32B32A32_FLOAT, B10G10R10A2_UINT>::StoreClear; \
|
||||||
sStoreTilesClearColorTable[B10G10R10A2_SINT] = StoreMacroTileClear<R32G32B32A32_FLOAT, B10G10R10A2_SINT>::StoreClear; \
|
sStoreTilesClearColorTable[B10G10R10A2_SINT] = StoreMacroTileClear<R32G32B32A32_FLOAT, B10G10R10A2_SINT>::StoreClear; \
|
||||||
sStoreTilesClearColorTable[R8G8B8_UINT] = StoreMacroTileClear<R32G32B32A32_FLOAT, R8G8B8_UINT>::StoreClear; \
|
sStoreTilesClearColorTable[R8G8B8_UINT] = StoreMacroTileClear<R32G32B32A32_FLOAT, R8G8B8_UINT>::StoreClear; \
|
||||||
sStoreTilesClearColorTable[R8G8B8_SINT] = StoreMacroTileClear<R32G32B32A32_FLOAT, R8G8B8_SINT>::StoreClear; \
|
sStoreTilesClearColorTable[R8G8B8_SINT] = StoreMacroTileClear<R32G32B32A32_FLOAT, R8G8B8_SINT>::StoreClear;
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
/// INIT_STORE_TILES_TABLE - Helper macro for setting up the tables.
|
/// INIT_STORE_TILES_TABLE - Helper macro for setting up the tables.
|
||||||
@@ -293,7 +293,7 @@ void SwrStoreHotTileClear(
|
|||||||
sStoreTilesClearDepthTable[R32_FLOAT] = StoreMacroTileClear<R32_FLOAT, R32_FLOAT>::StoreClear; \
|
sStoreTilesClearDepthTable[R32_FLOAT] = StoreMacroTileClear<R32_FLOAT, R32_FLOAT>::StoreClear; \
|
||||||
sStoreTilesClearDepthTable[R32_FLOAT_X8X24_TYPELESS] = StoreMacroTileClear<R32_FLOAT, R32_FLOAT_X8X24_TYPELESS>::StoreClear; \
|
sStoreTilesClearDepthTable[R32_FLOAT_X8X24_TYPELESS] = StoreMacroTileClear<R32_FLOAT, R32_FLOAT_X8X24_TYPELESS>::StoreClear; \
|
||||||
sStoreTilesClearDepthTable[R24_UNORM_X8_TYPELESS] = StoreMacroTileClear<R32_FLOAT, R24_UNORM_X8_TYPELESS>::StoreClear; \
|
sStoreTilesClearDepthTable[R24_UNORM_X8_TYPELESS] = StoreMacroTileClear<R32_FLOAT, R24_UNORM_X8_TYPELESS>::StoreClear; \
|
||||||
sStoreTilesClearDepthTable[R16_UNORM] = StoreMacroTileClear<R32_FLOAT, R16_UNORM>::StoreClear; \
|
sStoreTilesClearDepthTable[R16_UNORM] = StoreMacroTileClear<R32_FLOAT, R16_UNORM>::StoreClear;
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
/// @brief Sets up tables for ClearTile
|
/// @brief Sets up tables for ClearTile
|
||||||
|
@@ -88,7 +88,7 @@ brw_inst_##name(const struct gen_device_info *devinfo, \
|
|||||||
} else { \
|
} else { \
|
||||||
high = hi4; low = lo4; \
|
high = hi4; low = lo4; \
|
||||||
} \
|
} \
|
||||||
assert(((int) high) != -1 && ((int) low) != -1); \
|
assert(((int) high) != -1 && ((int) low) != -1);
|
||||||
|
|
||||||
/* A general macro for cases where the field has moved to several different
|
/* A general macro for cases where the field has moved to several different
|
||||||
* bit locations across generations. GCC appears to combine cases where the
|
* bit locations across generations. GCC appears to combine cases where the
|
||||||
|
@@ -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(a.File) == VSF_IN_CLASS_PARAM && \
|
||||||
t_src_class(b.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(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:
|
/* fglrx on rv250 codes up unused sources as follows:
|
||||||
unused but necessary sources are same as previous source, zero-ed out.
|
unused but necessary sources are same as previous source, zero-ed out.
|
||||||
|
@@ -249,7 +249,7 @@ struct xmesa_buffer {
|
|||||||
#define PACK_TRUECOLOR( PIXEL, R, G, B ) \
|
#define PACK_TRUECOLOR( PIXEL, R, G, B ) \
|
||||||
PIXEL = xmesa->xm_visual->RtoPixel[R] \
|
PIXEL = xmesa->xm_visual->RtoPixel[R] \
|
||||||
| xmesa->xm_visual->GtoPixel[G] \
|
| xmesa->xm_visual->GtoPixel[G] \
|
||||||
| xmesa->xm_visual->BtoPixel[B]; \
|
| xmesa->xm_visual->BtoPixel[B];
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -216,7 +216,7 @@ extern char *mesa_profile;
|
|||||||
x = LONG_MAX; \
|
x = LONG_MAX; \
|
||||||
for ( cycle_i = 0 ; cycle_i < 10 ; cycle_i++ ) { \
|
for ( cycle_i = 0 ; cycle_i < 10 ; cycle_i++ ) { \
|
||||||
unsigned long cycle_tmp1, cycle_tmp2; \
|
unsigned long cycle_tmp1, cycle_tmp2; \
|
||||||
rdtscll(cycle_tmp1); \
|
rdtscll(cycle_tmp1);
|
||||||
|
|
||||||
#define END_RACE(x) \
|
#define END_RACE(x) \
|
||||||
rdtscll(cycle_tmp2); \
|
rdtscll(cycle_tmp2); \
|
||||||
|
@@ -151,7 +151,7 @@
|
|||||||
#define LDMATRIX_0_5_10(BASE) \
|
#define LDMATRIX_0_5_10(BASE) \
|
||||||
ld [BASE + ( 0 * 0x4)], M0; \
|
ld [BASE + ( 0 * 0x4)], M0; \
|
||||||
ld [BASE + ( 5 * 0x4)], M5; \
|
ld [BASE + ( 5 * 0x4)], M5; \
|
||||||
ld [BASE + (10 * 0x4)], M10; \
|
ld [BASE + (10 * 0x4)], M10;
|
||||||
|
|
||||||
#define LDMATRIX_0_5_10_12_13_14(BASE) \
|
#define LDMATRIX_0_5_10_12_13_14(BASE) \
|
||||||
ld [BASE + ( 0 * 0x4)], M0; \
|
ld [BASE + ( 0 * 0x4)], M0; \
|
||||||
|
@@ -235,7 +235,7 @@ TWO(PUNPCKHWD ( MA2, MA2 )) /* pa2 | pa2 | |
|
|||||||
TWO(PUNPCKHDQ ( MA2, MA2 )) /* pa2 | pa2 | pa2 | pa2 */
|
TWO(PUNPCKHDQ ( MA2, MA2 )) /* pa2 | pa2 | pa2 | pa2 */
|
||||||
|
|
||||||
#define GMB_PACK( MS1, MS2 ) \
|
#define GMB_PACK( MS1, MS2 ) \
|
||||||
PACKUSWB ( MS2, MS1 ) /* sa2 | sb2 | sg2 | sr2 | sa1 | sb1 | sg1 | sr1 */ ;\
|
PACKUSWB ( MS2, MS1 ) /* sa2 | sb2 | sg2 | sr2 | sa1 | sb1 | sg1 | sr1 */ ;
|
||||||
|
|
||||||
#define GMB_STORE(rgba, MSS ) \
|
#define GMB_STORE(rgba, MSS ) \
|
||||||
ONE(MOVD ( MSS, REGIND(rgba) )) /* | | | | sa1 | sb1 | sg1 | sr1 */ ;\
|
ONE(MOVD ( MSS, REGIND(rgba) )) /* | | | | sa1 | sb1 | sg1 | sr1 */ ;\
|
||||||
|
@@ -65,7 +65,7 @@
|
|||||||
movl (%ebx), %eax ; \
|
movl (%ebx), %eax ; \
|
||||||
bswap %eax /* ARGB -> BGRA */ ; \
|
bswap %eax /* ARGB -> BGRA */ ; \
|
||||||
rorl $8, %eax /* BGRA -> ABGR */ ; \
|
rorl $8, %eax /* BGRA -> ABGR */ ; \
|
||||||
movl %eax, (%ecx) /* ABGR -> R, G, B, A */ ; \
|
movl %eax, (%ecx) /* ABGR -> R, G, B, A */ ;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user