r300: Removed obsolete start_index16_packet/start_index32_packet.
authorOliver McFadden <z3ro.geek@gmail.com>
Thu, 10 May 2007 21:28:04 +0000 (21:28 +0000)
committerOliver McFadden <z3ro.geek@gmail.com>
Thu, 10 May 2007 21:28:04 +0000 (21:28 +0000)
It's all in r300_render.c now.

src/mesa/drivers/dri/r300/r300_emit.h

index b8242ad41e26fb5efb7129130769f4e90cf017d4..ae084d4b1da427ecb6588074e443259e353296fa 100644 (file)
@@ -227,26 +227,4 @@ void static inline cp_wait(r300ContextPtr rmesa, unsigned char flags)
        cmd[0].i = cmdwait(flags);
 }
 
-/**
- * These are followed by the corresponding data
- */
-#define start_index32_packet(vertex_count, type)                       \
-       do {                                                            \
-               int _vc;                                                \
-               _vc = (vertex_count);                                   \
-               start_packet3(RADEON_CP_PACKET3_3D_DRAW_INDX_2, _vc);   \
-               e32(R300_VAP_VF_CNTL__PRIM_WALK_INDICES | (_vc<<16) |   \
-                   type | R300_VAP_VF_CNTL__INDEX_SIZE_32bit);         \
-       } while (0);
-
-#define start_index16_packet(vertex_count, type)                       \
-       do {                                                            \
-               int _vc, _n;                                            \
-               _vc = (vertex_count);                                   \
-               _n = (vertex_count+1)>>1;                               \
-               start_packet3(RADEON_CP_PACKET3_3D_DRAW_INDX_2, _n);    \
-               e32(R300_VAP_VF_CNTL__PRIM_WALK_INDICES | (_vc<<16) |   \
-                   type);                                              \
-       } while (0);
-
 #endif