mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-27 20:24:30 +08:00
r600g: Move R600_BIG_ENDIAN to r600_pipe_common.h
I need to do this so I could use R600_BIG_ENDIAN in files which include r600_pipe_common.h but not r600_pipe.h Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com> Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
parent
72d0d2ba59
commit
d3c98c73dc
@ -92,12 +92,6 @@
|
||||
#define R600_NUM_HW_STAGES 4
|
||||
#define EG_NUM_HW_STAGES 6
|
||||
|
||||
#ifdef PIPE_ARCH_BIG_ENDIAN
|
||||
#define R600_BIG_ENDIAN 1
|
||||
#else
|
||||
#define R600_BIG_ENDIAN 0
|
||||
#endif
|
||||
|
||||
struct r600_context;
|
||||
struct r600_bytecode;
|
||||
union r600_shader_key;
|
||||
|
@ -99,6 +99,12 @@
|
||||
#define R600_MAP_BUFFER_ALIGNMENT 64
|
||||
#define R600_MAX_VIEWPORTS 16
|
||||
|
||||
#ifdef PIPE_ARCH_BIG_ENDIAN
|
||||
#define R600_BIG_ENDIAN 1
|
||||
#else
|
||||
#define R600_BIG_ENDIAN 0
|
||||
#endif
|
||||
|
||||
struct r600_common_context;
|
||||
struct r600_perfcounters;
|
||||
struct tgsi_shader_info;
|
||||
|
Loading…
Reference in New Issue
Block a user