r300: fix compiler/linker errors
authorJoakim Sindholt <bacn@zhasha.com>
Tue, 3 Feb 2009 01:58:51 +0000 (02:58 +0100)
committerCorbin Simpson <MostAwesomeDude@gmail.com>
Tue, 3 Feb 2009 02:24:55 +0000 (18:24 -0800)
src/gallium/drivers/r300/r300_chipset.c
src/gallium/drivers/r300/r300_screen.c
src/gallium/drivers/r300/r300_state.c
src/gallium/drivers/r300/r300_surface.c

index b0a7fe7d213954278276c5cf0944681d08b4c8d2..7def62422a011ebe57c5907abac943ff287d351e 100644 (file)
@@ -21,6 +21,7 @@
  * USE OR OTHER DEALINGS IN THE SOFTWARE. */
 
 #include "r300_chipset.h"
+#include "pipe/p_debug.h"
 
 /* r300_chipset: A file all to itself for deducing the various properties of
  * Radeons. */
index 8e77e0ddd977599d83d3eb876a2dc495ee1a9f69..fd916fadbe62d824f1745d16b85f3e8797b48bc1 100644 (file)
@@ -81,7 +81,7 @@ static int r300_get_param(struct pipe_screen* pscreen, int param)
             /* IN THEORY */
             return 0;
         case PIPE_CAP_TWO_SIDED_STENCIL:
-            if (r300screen->is_r500) {
+            if (r300screen->caps->is_r500) {
                 return 1;
             } else {
                 return 0;
index 37770cd5c6c384a870855e865e859b7375f0a027..6bb8379dd5d0c5a868ae526f2d06ea0b6b7e112d 100644 (file)
@@ -22,6 +22,7 @@
 
 #include "util/u_math.h"
 #include "util/u_pack_color.h"
+#include "pipe/p_debug.h"
 
 #include "r300_context.h"
 #include "r300_reg.h"
index 4bccdbca29df4ce36003a59d590d211c51a6f3b3..e03f3de37127c0fcdeec79bab6143b2266d17460 100644 (file)
@@ -52,7 +52,7 @@ static void r300_surface_fill(struct pipe_context* pipe,
         return;
     }
 
-BEGIN_CS((caps->is_r500) ? 300 : 322);
+BEGIN_CS((caps->is_r500) ? 309 : 322);
 R300_PACIFY;
 OUT_CS_REG(R300_TX_INVALTAGS, 0x0);
 R300_PACIFY;
@@ -289,7 +289,7 @@ OUT_CS_REG(R300_ZB_ZCACHE_CTLSTAT,
 
 OUT_CS_REG_SEQ(R300_RB3D_COLOROFFSET0, 1);
 OUT_CS_RELOC(dest->buffer, 0, 0, RADEON_GEM_DOMAIN_VRAM, 0);
-/* XXX this should not be so rigid */
+/* XXX this should not be so rigid and it still doesn't work right */
 OUT_CS_REG(R300_RB3D_COLORPITCH0, (w / 4) | R300_COLOR_TILE_ENABLE |
     R300_COLOR_FORMAT_ARGB8888);
 OUT_CS_REG(RB3D_COLOR_CHANNEL_MASK, 0x0000000F);