Cell: move float4 typedef (temporary datatype)
authorBrian <brian.paul@tungstengraphics.com>
Mon, 4 Feb 2008 23:48:36 +0000 (16:48 -0700)
committerBrian <brian.paul@tungstengraphics.com>
Mon, 4 Feb 2008 23:48:36 +0000 (16:48 -0700)
src/mesa/pipe/cell/spu/spu_main.h
src/mesa/pipe/cell/spu/spu_tri.c

index cfd4d7272904ff979ff9cf070b078f34c3d543c7..1710a175123194c7af733ec9b199b3d6a710298c 100644 (file)
 #define MAX_HEIGHT 1024
 
 
-typedef union
-{
-   vector float v;
-   float f[4];
-} float4;
-
-
 typedef union {
    ushort us[TILE_SIZE][TILE_SIZE];
    uint   ui[TILE_SIZE][TILE_SIZE];
index 4c6de56eda53a8c8f6b97adbc719da76058b8885..688c8646ab2f3d15f87a1f72becc6ba7d25a8d06 100644 (file)
 /** Masks are uint[4] vectors with each element being 0 or 0xffffffff */
 typedef vector unsigned int mask_t;
 
+typedef union
+{
+   vector float v;
+   float f[4];
+} float4;
+
 
 /**
  * Simplified types taken from other parts of Gallium