llvmpipe: Rename preprocessor symbols too.
authorJosé Fonseca <jfonseca@vmware.com>
Mon, 27 Jul 2009 10:36:24 +0000 (11:36 +0100)
committerJosé Fonseca <jfonseca@vmware.com>
Sat, 29 Aug 2009 08:21:16 +0000 (09:21 +0100)
30 files changed:
src/gallium/drivers/llvmpipe/lp_clear.h
src/gallium/drivers/llvmpipe/lp_context.c
src/gallium/drivers/llvmpipe/lp_context.h
src/gallium/drivers/llvmpipe/lp_flush.h
src/gallium/drivers/llvmpipe/lp_fs.h
src/gallium/drivers/llvmpipe/lp_prim_setup.h
src/gallium/drivers/llvmpipe/lp_prim_vbuf.c
src/gallium/drivers/llvmpipe/lp_prim_vbuf.h
src/gallium/drivers/llvmpipe/lp_quad.h
src/gallium/drivers/llvmpipe/lp_quad_pipe.c
src/gallium/drivers/llvmpipe/lp_quad_pipe.h
src/gallium/drivers/llvmpipe/lp_query.c
src/gallium/drivers/llvmpipe/lp_query.h
src/gallium/drivers/llvmpipe/lp_screen.h
src/gallium/drivers/llvmpipe/lp_setup.c
src/gallium/drivers/llvmpipe/lp_setup.h
src/gallium/drivers/llvmpipe/lp_state.h
src/gallium/drivers/llvmpipe/lp_state_blend.c
src/gallium/drivers/llvmpipe/lp_state_clip.c
src/gallium/drivers/llvmpipe/lp_state_derived.c
src/gallium/drivers/llvmpipe/lp_state_fs.c
src/gallium/drivers/llvmpipe/lp_state_rasterizer.c
src/gallium/drivers/llvmpipe/lp_state_sampler.c
src/gallium/drivers/llvmpipe/lp_state_surface.c
src/gallium/drivers/llvmpipe/lp_state_vertex.c
src/gallium/drivers/llvmpipe/lp_surface.h
src/gallium/drivers/llvmpipe/lp_tex_sample.h
src/gallium/drivers/llvmpipe/lp_texture.h
src/gallium/drivers/llvmpipe/lp_tile_cache.h
src/gallium/drivers/llvmpipe/lp_winsys.h

index 781a867946bf4b1d08dc5ca91a781c51b026ea58..6d4ffccdf452486c08eac9dc1544bb742fcac105 100644 (file)
@@ -29,8 +29,8 @@
  *    Brian Paul
  */
 
-#ifndef SP_CLEAR_H
-#define SP_CLEAR_H
+#ifndef LP_CLEAR_H
+#define LP_CLEAR_H
 
 #include "pipe/p_state.h"
 struct pipe_context;
@@ -40,4 +40,4 @@ llvmpipe_clear(struct pipe_context *pipe, unsigned buffers, const float *rgba,
                double depth, unsigned stencil);
 
 
-#endif /* SP_CLEAR_H */
+#endif /* LP_CLEAR_H */
index cad74d3da9412aeb29b7c895823691b21a44782e..66a6e791931fd9675e84e4336496f252449055cf 100644 (file)
@@ -91,7 +91,7 @@ static void llvmpipe_destroy( struct pipe_context *pipe )
    if (llvmpipe->draw)
       draw_destroy( llvmpipe->draw );
 
-   for (i = 0; i < SP_NUM_QUAD_THREADS; i++) {
+   for (i = 0; i < LP_NUM_QUAD_THREADS; i++) {
       llvmpipe->quad[i].polygon_stipple->destroy( llvmpipe->quad[i].polygon_stipple );
       llvmpipe->quad[i].earlyz->destroy( llvmpipe->quad[i].earlyz );
       llvmpipe->quad[i].shade->destroy( llvmpipe->quad[i].shade );
@@ -237,7 +237,7 @@ llvmpipe_create( struct pipe_screen *screen )
 
 
    /* setup quad rendering stages */
-   for (i = 0; i < SP_NUM_QUAD_THREADS; i++) {
+   for (i = 0; i < LP_NUM_QUAD_THREADS; i++) {
       llvmpipe->quad[i].polygon_stipple = lp_quad_polygon_stipple_stage(llvmpipe);
       llvmpipe->quad[i].earlyz = lp_quad_earlyz_stage(llvmpipe);
       llvmpipe->quad[i].shade = lp_quad_shade_stage(llvmpipe);
@@ -285,10 +285,10 @@ llvmpipe_create( struct pipe_screen *screen )
    if (!llvmpipe->setup)
       goto fail;
 
-   if (debug_get_bool_option( "SP_NO_RAST", FALSE ))
+   if (debug_get_bool_option( "LP_NO_RAST", FALSE ))
       llvmpipe->no_rast = TRUE;
 
-   if (debug_get_bool_option( "SP_NO_VBUF", FALSE )) {
+   if (debug_get_bool_option( "LP_NO_VBUF", FALSE )) {
       /* Deprecated path -- vbuf is the intended interface to the draw module:
        */
       draw_set_rasterize_stage(llvmpipe->draw, llvmpipe->setup);
index 32b1925b77a60c68e730b443e05c1aca275a3f79..9bfae0aa7f8693393a9be0f1f0f4dd007f839126 100644 (file)
@@ -28,8 +28,8 @@
 /* Authors:  Keith Whitwell <keith@tungstengraphics.com>
  */
 
-#ifndef SP_CONTEXT_H
-#define SP_CONTEXT_H
+#ifndef LP_CONTEXT_H
+#define LP_CONTEXT_H
 
 #include "pipe/p_context.h"
 
@@ -48,7 +48,7 @@
 /* Number of threads working on individual quads.
  * Setting to 1 disables this feature.
  */
-#define SP_NUM_QUAD_THREADS 1
+#define LP_NUM_QUAD_THREADS 1
 
 struct llvmpipe_vbuf_render;
 struct draw_context;
@@ -86,7 +86,7 @@ struct llvmpipe_context {
    unsigned num_vertex_elements;
    unsigned num_vertex_buffers;
 
-   unsigned dirty; /**< Mask of SP_NEW_x flags */
+   unsigned dirty; /**< Mask of LP_NEW_x flags */
 
    /* Counter for occlusion queries.  Note this supports overlapping
     * queries.
@@ -129,7 +129,7 @@ struct llvmpipe_context {
       struct quad_stage *output;
 
       struct quad_stage *first; /**< points to one of the above stages */
-   } quad[SP_NUM_QUAD_THREADS];
+   } quad[LP_NUM_QUAD_THREADS];
 
    /** TGSI exec things */
    struct {
@@ -164,5 +164,5 @@ llvmpipe_context( struct pipe_context *pipe )
    return (struct llvmpipe_context *)pipe;
 }
 
-#endif /* SP_CONTEXT_H */
+#endif /* LP_CONTEXT_H */
 
index 787bc5f2b25306fad919735c574084a22781473c..10b2b5258362c284e055958fa184bf45bf68a3f3 100644 (file)
@@ -25,8 +25,8 @@
  * 
  **************************************************************************/
 
-#ifndef SP_FLUSH_H
-#define SP_FLUSH_H
+#ifndef LP_FLUSH_H
+#define LP_FLUSH_H
 
 struct pipe_context;
 struct pipe_fence_handle;
index 408167075ae85d050dd5361bb3647760f2a443dd..505e21138f5200f76d18e9efaa83da2e37e68223 100644 (file)
@@ -28,8 +28,8 @@
 /* Authors:  Keith Whitwell <keith@tungstengraphics.com>
  */
 
-#ifndef SP_FS_H
-#define SP_FS_H
+#ifndef LP_FS_H
+#define LP_FS_H
 
 struct lp_fragment_shader *
 llvmpipe_create_fs_exec(struct llvmpipe_context *llvmpipe,
index 9cd34396608a36008c68f0f2acfad0c43b6f9bfa..da6cae63751d61f9fe4608b5042a55c6fbc448f7 100644 (file)
@@ -26,8 +26,8 @@
  **************************************************************************/
 
 
-#ifndef SP_PRIM_SETUP_H
-#define SP_PRIM_SETUP_H
+#ifndef LP_PRIM_SETUP_H
+#define LP_PRIM_SETUP_H
 
 
 /**
@@ -82,4 +82,4 @@ lp_draw_vbuf_stage( struct draw_context *draw_context,
                     vbuf_draw_func draw );
 
 
-#endif /* SP_PRIM_SETUP_H */
+#endif /* LP_PRIM_SETUP_H */
index e6d9e375a315d6c3b5d540da426a0d02b0027493..5921ed3f96aa67272b356a8a377a0b7852d9e1d3 100644 (file)
@@ -46,8 +46,8 @@
 #include "util/u_memory.h"
 
 
-#define SP_MAX_VBUF_INDEXES 1024
-#define SP_MAX_VBUF_SIZE    4096
+#define LP_MAX_VBUF_INDEXES 1024
+#define LP_MAX_VBUF_SIZE    4096
 
 typedef const float (*cptrf4)[4];
 
@@ -562,8 +562,8 @@ lp_init_vbuf(struct llvmpipe_context *lp)
 
    lp->vbuf_render = CALLOC_STRUCT(llvmpipe_vbuf_render);
 
-   lp->vbuf_render->base.max_indices = SP_MAX_VBUF_INDEXES;
-   lp->vbuf_render->base.max_vertex_buffer_bytes = SP_MAX_VBUF_SIZE;
+   lp->vbuf_render->base.max_indices = LP_MAX_VBUF_INDEXES;
+   lp->vbuf_render->base.max_vertex_buffer_bytes = LP_MAX_VBUF_SIZE;
 
    lp->vbuf_render->base.get_vertex_info = lp_vbuf_get_vertex_info;
    lp->vbuf_render->base.allocate_vertices = lp_vbuf_allocate_vertices;
index 6405c584b6d89ef171bbeaf4944e498ff4cabfbe..6c4e6063e6d2a28acc558c5fcd79fcac99e3988d 100644 (file)
@@ -25,8 +25,8 @@
  * 
  **************************************************************************/
 
-#ifndef SP_VBUF_H
-#define SP_VBUF_H
+#ifndef LP_VBUF_H
+#define LP_VBUF_H
 
 
 struct llvmpipe_context;
@@ -35,4 +35,4 @@ extern void
 lp_init_vbuf(struct llvmpipe_context *llvmpipe);
 
 
-#endif /* SP_VBUF_H */
+#endif /* LP_VBUF_H */
index bd6c6cb912347b466b22dd853d8ed78d37d4f21c..f31a74404def9e3f828ebbf0412b205a82706f41 100644 (file)
@@ -28,8 +28,8 @@
 /* Authors:  Keith Whitwell <keith@tungstengraphics.com>
  */
 
-#ifndef SP_QUAD_H
-#define SP_QUAD_H
+#ifndef LP_QUAD_H
+#define LP_QUAD_H
 
 #include "pipe/p_state.h"
 #include "tgsi/tgsi_exec.h"
@@ -103,4 +103,4 @@ struct quad_header {
    unsigned nr_attrs;
 };
 
-#endif /* SP_QUAD_H */
+#endif /* LP_QUAD_H */
index 378acf8f8603081778fadc1ec8adbd205200344d..ab2026352385a504755877f1f6d542f5e31ed56f 100644 (file)
@@ -68,7 +68,7 @@ lp_build_quad_pipeline(struct llvmpipe_context *lp)
                !lp->fs->info.writes_z;
 
    /* build up the pipeline in reverse order... */
-   for (i = 0; i < SP_NUM_QUAD_THREADS; i++) {
+   for (i = 0; i < LP_NUM_QUAD_THREADS; i++) {
       lp->quad[i].first = lp->quad[i].output;
 
       if (lp->blend->colormask != 0xf) {
index 5995fdb6c66fd842f5f5c281f98852ebd1fdd145..4c3efdee69cd57ba623ec38a91d4bcbfc1c41e66 100644 (file)
@@ -28,8 +28,8 @@
 /* Authors:  Keith Whitwell <keith@tungstengraphics.com>
  */
 
-#ifndef SP_QUAD_PIPE_H
-#define SP_QUAD_PIPE_H
+#ifndef LP_QUAD_PIPE_H
+#define LP_QUAD_PIPE_H
 
 
 struct llvmpipe_context;
@@ -71,4 +71,4 @@ void lp_build_quad_pipeline(struct llvmpipe_context *lp);
 
 void lp_depth_test_quad(struct quad_stage *qs, struct quad_header *quad);
 
-#endif /* SP_QUAD_PIPE_H */
+#endif /* LP_QUAD_PIPE_H */
index 7aa8e9d3feaccaf7a3e3abe5e7e3b29f2210215a..5554285425deb52ab50150a095929a181b989a73 100644 (file)
@@ -71,7 +71,7 @@ llvmpipe_begin_query(struct pipe_context *pipe, struct pipe_query *q)
    
    sq->start = llvmpipe->occlusion_count;
    llvmpipe->active_query_count++;
-   llvmpipe->dirty |= SP_NEW_QUERY;
+   llvmpipe->dirty |= LP_NEW_QUERY;
 }
 
 
@@ -83,7 +83,7 @@ llvmpipe_end_query(struct pipe_context *pipe, struct pipe_query *q)
 
    llvmpipe->active_query_count--;
    sq->end = llvmpipe->occlusion_count;
-   llvmpipe->dirty |= SP_NEW_QUERY;
+   llvmpipe->dirty |= LP_NEW_QUERY;
 }
 
 
index 58eba089d876d7b385b8b13f22e5a587ce66c6f2..fa9fcd87139b74d77096073310d71470351ddf55 100644 (file)
  *    Keith Whitwell
  */
 
-#ifndef SP_QUERY_H
-#define SP_QUERY_H
+#ifndef LP_QUERY_H
+#define LP_QUERY_H
 
 struct llvmpipe_context;
 extern void llvmpipe_init_query_funcs(struct llvmpipe_context * );
 
 
-#endif /* SP_QUERY_H */
+#endif /* LP_QUERY_H */
index 9f79510c4d6a954838f10f44f770f578a629996b..7386ebefe642fe7e9acb01672222a6246b98dd00 100644 (file)
@@ -28,8 +28,8 @@
 /* Authors:  Keith Whitwell <keith@tungstengraphics.com>
  */
 
-#ifndef SP_SCREEN_H
-#define SP_SCREEN_H
+#ifndef LP_SCREEN_H
+#define LP_SCREEN_H
 
 #include "pipe/p_screen.h"
 #include "pipe/p_defines.h"
@@ -55,4 +55,4 @@ llvmpipe_screen( struct pipe_screen *pipe )
 }
 
 
-#endif /* SP_SCREEN_H */
+#endif /* LP_SCREEN_H */
index 1bfe9d4852cd2ad8113afcc29c8302b43af07f91..e4cf0a60fa9d3cbedffdd0a9d25a2e110ae84a37 100644 (file)
@@ -61,7 +61,7 @@ struct edge {
    int lines;          /**< number of lines on this edge */
 };
 
-#if SP_NUM_QUAD_THREADS > 1
+#if LP_NUM_QUAD_THREADS > 1
 
 /* Set to 1 if you want other threads to be instantly
  * notified of pending jobs.
@@ -169,9 +169,9 @@ struct setup_context {
    struct tgsi_interp_coef posCoef;  /* For Z, W */
    struct quad_header quad;
 
-#if SP_NUM_QUAD_THREADS > 1
+#if LP_NUM_QUAD_THREADS > 1
    struct quad_job_que que;
-   struct thread_info threads[SP_NUM_QUAD_THREADS];
+   struct thread_info threads[LP_NUM_QUAD_THREADS];
 #endif
 
    struct {
@@ -190,7 +190,7 @@ struct setup_context {
    unsigned winding;           /* which winding to cull */
 };
 
-#if SP_NUM_QUAD_THREADS > 1
+#if LP_NUM_QUAD_THREADS > 1
 
 static PIPE_THREAD_ROUTINE( quad_thread, param )
 {
@@ -323,7 +323,7 @@ clip_emit_quad( struct setup_context *setup, struct quad_header *quad, uint thre
    }
 }
 
-#if SP_NUM_QUAD_THREADS > 1
+#if LP_NUM_QUAD_THREADS > 1
 
 static void
 clip_emit_quad_job( struct setup_context *setup, uint thread, struct quad_job *job )
@@ -373,7 +373,7 @@ emit_quad( struct setup_context *setup, struct quad_header *quad, uint thread )
 #endif
 }
 
-#if SP_NUM_QUAD_THREADS > 1
+#if LP_NUM_QUAD_THREADS > 1
 
 static void
 emit_quad_job( struct setup_context *setup, uint thread, struct quad_job *job )
@@ -1490,7 +1490,7 @@ void setup_prepare( struct setup_context *setup )
    /* Note: nr_attrs is only used for debugging (vertex printing) */
    setup->quad.nr_attrs = draw_num_vs_outputs(lp->draw);
 
-   for (i = 0; i < SP_NUM_QUAD_THREADS; i++) {
+   for (i = 0; i < LP_NUM_QUAD_THREADS; i++) {
       lp->quad[i].first->begin( lp->quad[i].first );
    }
 
@@ -1520,7 +1520,7 @@ void setup_destroy_context( struct setup_context *setup )
 struct setup_context *setup_create_context( struct llvmpipe_context *llvmpipe )
 {
    struct setup_context *setup = CALLOC_STRUCT(setup_context);
-#if SP_NUM_QUAD_THREADS > 1
+#if LP_NUM_QUAD_THREADS > 1
    uint i;
 #endif
 
@@ -1529,7 +1529,7 @@ struct setup_context *setup_create_context( struct llvmpipe_context *llvmpipe )
    setup->quad.coef = setup->coef;
    setup->quad.posCoef = &setup->posCoef;
 
-#if SP_NUM_QUAD_THREADS > 1
+#if LP_NUM_QUAD_THREADS > 1
    setup->que.first = 0;
    setup->que.last = 0;
    pipe_mutex_init( setup->que.que_mutex );
@@ -1538,7 +1538,7 @@ struct setup_context *setup_create_context( struct llvmpipe_context *llvmpipe )
    setup->que.jobs_added = 0;
    setup->que.jobs_done = 0;
    pipe_condvar_init( setup->que.que_done_condvar );
-   for (i = 0; i < SP_NUM_QUAD_THREADS; i++) {
+   for (i = 0; i < LP_NUM_QUAD_THREADS; i++) {
       setup->threads[i].setup = setup;
       setup->threads[i].id = i;
       setup->threads[i].handle = pipe_thread_create( quad_thread, &setup->threads[i] );
index 0e84dfc615a0276f4a3ecfa796614c5f7c58a5b4..f55f7e10205884be25b9bac1ff2e86b7dbcb76d1 100644 (file)
@@ -24,8 +24,8 @@
  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  *
  **************************************************************************/
-#ifndef SP_SETUP_H
-#define SP_SETUP_H
+#ifndef LP_SETUP_H
+#define LP_SETUP_H
 
 struct setup_context;
 struct llvmpipe_context;
index 778b3a5a68f5153d1c4c07ab12c9802a570dc2fa..125567b6776ff7debba3a887b6666bc67985198d 100644 (file)
 /* Authors:  Keith Whitwell <keith@tungstengraphics.com>
  */
 
-#ifndef SP_STATE_H
-#define SP_STATE_H
+#ifndef LP_STATE_H
+#define LP_STATE_H
 
 #include "pipe/p_state.h"
 #include "tgsi/tgsi_scan.h"
 
 
-#define SP_NEW_VIEWPORT      0x1
-#define SP_NEW_RASTERIZER    0x2
-#define SP_NEW_FS            0x4
-#define SP_NEW_BLEND         0x8
-#define SP_NEW_CLIP          0x10
-#define SP_NEW_SCISSOR       0x20
-#define SP_NEW_STIPPLE       0x40
-#define SP_NEW_FRAMEBUFFER   0x80
-#define SP_NEW_DEPTH_STENCIL_ALPHA 0x100
-#define SP_NEW_CONSTANTS     0x200
-#define SP_NEW_SAMPLER       0x400
-#define SP_NEW_TEXTURE       0x800
-#define SP_NEW_VERTEX        0x1000
-#define SP_NEW_VS            0x2000
-#define SP_NEW_QUERY         0x4000
+#define LP_NEW_VIEWPORT      0x1
+#define LP_NEW_RASTERIZER    0x2
+#define LP_NEW_FS            0x4
+#define LP_NEW_BLEND         0x8
+#define LP_NEW_CLIP          0x10
+#define LP_NEW_SCISSOR       0x20
+#define LP_NEW_STIPPLE       0x40
+#define LP_NEW_FRAMEBUFFER   0x80
+#define LP_NEW_DEPTH_STENCIL_ALPHA 0x100
+#define LP_NEW_CONSTANTS     0x200
+#define LP_NEW_SAMPLER       0x400
+#define LP_NEW_TEXTURE       0x800
+#define LP_NEW_VERTEX        0x1000
+#define LP_NEW_VS            0x2000
+#define LP_NEW_QUERY         0x4000
 
 
 struct tgsi_sampler;
index 420615bd5be5d19a7ef2f04bba99bddb595c8c13..041a54f13e2fd41b689503af74a839f1f77a0d01 100644 (file)
@@ -47,7 +47,7 @@ void llvmpipe_bind_blend_state( struct pipe_context *pipe,
 
    llvmpipe->blend = (const struct pipe_blend_state *)blend;
 
-   llvmpipe->dirty |= SP_NEW_BLEND;
+   llvmpipe->dirty |= LP_NEW_BLEND;
 }
 
 void llvmpipe_delete_blend_state(struct pipe_context *pipe,
@@ -64,7 +64,7 @@ void llvmpipe_set_blend_color( struct pipe_context *pipe,
 
    llvmpipe->blend_color = *blend_color;
 
-   llvmpipe->dirty |= SP_NEW_BLEND;
+   llvmpipe->dirty |= LP_NEW_BLEND;
 }
 
 
@@ -88,7 +88,7 @@ llvmpipe_bind_depth_stencil_state(struct pipe_context *pipe,
 
    llvmpipe->depth_stencil = (const struct pipe_depth_stencil_alpha_state *)depth_stencil;
 
-   llvmpipe->dirty |= SP_NEW_DEPTH_STENCIL_ALPHA;
+   llvmpipe->dirty |= LP_NEW_DEPTH_STENCIL_ALPHA;
 }
 
 void
index b5408f787df36678e74468889b83edc562ed819a..df68f27acc972287f9c843f0aa8496bc878edd11 100644 (file)
@@ -51,7 +51,7 @@ void llvmpipe_set_viewport_state( struct pipe_context *pipe,
    draw_set_viewport_state(llvmpipe->draw, viewport);
 
    llvmpipe->viewport = *viewport; /* struct copy */
-   llvmpipe->dirty |= SP_NEW_VIEWPORT;
+   llvmpipe->dirty |= LP_NEW_VIEWPORT;
 }
 
 
@@ -63,7 +63,7 @@ void llvmpipe_set_scissor_state( struct pipe_context *pipe,
    draw_flush(llvmpipe->draw);
 
    llvmpipe->scissor = *scissor; /* struct copy */
-   llvmpipe->dirty |= SP_NEW_SCISSOR;
+   llvmpipe->dirty |= LP_NEW_SCISSOR;
 }
 
 
@@ -75,5 +75,5 @@ void llvmpipe_set_polygon_stipple( struct pipe_context *pipe,
    draw_flush(llvmpipe->draw);
 
    llvmpipe->poly_stipple = *stipple; /* struct copy */
-   llvmpipe->dirty |= SP_NEW_STIPPLE;
+   llvmpipe->dirty |= LP_NEW_STIPPLE;
 }
index 3fd3c4078b2f33a4f802c3bf6233da8f70dd0c80..05a3a0495b40ecbcd51417eabecf87d22c2fe3c1 100644 (file)
@@ -189,22 +189,22 @@ compute_cliprect(struct llvmpipe_context *lp)
  */
 void llvmpipe_update_derived( struct llvmpipe_context *llvmpipe )
 {
-   if (llvmpipe->dirty & (SP_NEW_RASTERIZER |
-                          SP_NEW_FS |
-                          SP_NEW_VS))
+   if (llvmpipe->dirty & (LP_NEW_RASTERIZER |
+                          LP_NEW_FS |
+                          LP_NEW_VS))
       invalidate_vertex_layout( llvmpipe );
 
-   if (llvmpipe->dirty & (SP_NEW_SCISSOR |
-                          SP_NEW_DEPTH_STENCIL_ALPHA |
-                          SP_NEW_FRAMEBUFFER))
+   if (llvmpipe->dirty & (LP_NEW_SCISSOR |
+                          LP_NEW_DEPTH_STENCIL_ALPHA |
+                          LP_NEW_FRAMEBUFFER))
       compute_cliprect(llvmpipe);
 
-   if (llvmpipe->dirty & (SP_NEW_BLEND |
-                          SP_NEW_DEPTH_STENCIL_ALPHA |
-                          SP_NEW_FRAMEBUFFER |
-                          SP_NEW_RASTERIZER |
-                          SP_NEW_FS | 
-                         SP_NEW_QUERY))
+   if (llvmpipe->dirty & (LP_NEW_BLEND |
+                          LP_NEW_DEPTH_STENCIL_ALPHA |
+                          LP_NEW_FRAMEBUFFER |
+                          LP_NEW_RASTERIZER |
+                          LP_NEW_FS | 
+                         LP_NEW_QUERY))
       lp_build_quad_pipeline(llvmpipe);
 
    llvmpipe->dirty = 0;
index dcc73f44e817d06c30888e897c024e11b4657052..1dc0dadef68a13d883e1c5589f5540f8113ba364 100644 (file)
@@ -75,7 +75,7 @@ llvmpipe_bind_fs_state(struct pipe_context *pipe, void *fs)
 
    llvmpipe->fs = (struct lp_fragment_shader *) fs;
 
-   llvmpipe->dirty |= SP_NEW_FS;
+   llvmpipe->dirty |= LP_NEW_FS;
 }
 
 
@@ -133,7 +133,7 @@ llvmpipe_bind_vs_state(struct pipe_context *pipe, void *vs)
    draw_bind_vertex_shader(llvmpipe->draw,
                            (llvmpipe->vs ? llvmpipe->vs->draw_data : NULL));
 
-   llvmpipe->dirty |= SP_NEW_VS;
+   llvmpipe->dirty |= LP_NEW_VS;
 }
 
 
@@ -165,5 +165,5 @@ llvmpipe_set_constant_buffer(struct pipe_context *pipe,
    pipe_buffer_reference(&llvmpipe->constants[shader].buffer,
                         buf ? buf->buffer : NULL);
 
-   llvmpipe->dirty |= SP_NEW_CONSTANTS;
+   llvmpipe->dirty |= LP_NEW_CONSTANTS;
 }
index 9e38606b146f910b268b169b9f54cd56d06b49ad..4561c6b84560a40b12bc4d595d42121d476c3603 100644 (file)
@@ -50,7 +50,7 @@ void llvmpipe_bind_rasterizer_state(struct pipe_context *pipe,
 
    llvmpipe->rasterizer = (struct pipe_rasterizer_state *)setup;
 
-   llvmpipe->dirty |= SP_NEW_RASTERIZER;
+   llvmpipe->dirty |= LP_NEW_RASTERIZER;
 }
 
 void llvmpipe_delete_rasterizer_state(struct pipe_context *pipe,
index 790c12302f3c22d0d7e0d3d56c9d2725d7ba71ca..3a0497fad22bdbdc381f13e2867cca68602f1c84 100644 (file)
@@ -73,7 +73,7 @@ llvmpipe_bind_sampler_states(struct pipe_context *pipe,
 
    llvmpipe->num_samplers = num;
 
-   llvmpipe->dirty |= SP_NEW_SAMPLER;
+   llvmpipe->dirty |= LP_NEW_SAMPLER;
 }
 
 
@@ -102,7 +102,7 @@ llvmpipe_set_sampler_textures(struct pipe_context *pipe,
 
    llvmpipe->num_textures = num;
 
-   llvmpipe->dirty |= SP_NEW_TEXTURE;
+   llvmpipe->dirty |= LP_NEW_TEXTURE;
 }
 
 
index d71e1a7ebb13947e02bbd341f0a462fea63371ad..f1a3e6ae4718d0d20022f8db5a663d5ce6ac077c 100644 (file)
@@ -125,5 +125,5 @@ llvmpipe_set_framebuffer_state(struct pipe_context *pipe,
    lp->framebuffer.width = fb->width;
    lp->framebuffer.height = fb->height;
 
-   lp->dirty |= SP_NEW_FRAMEBUFFER;
+   lp->dirty |= LP_NEW_FRAMEBUFFER;
 }
index 68c0e94ab6629e091e9b7cea8981bacae08f7043..1a17631a4c62627f88255cbf0d87d7d27253da9c 100644 (file)
@@ -49,7 +49,7 @@ llvmpipe_set_vertex_elements(struct pipe_context *pipe,
           count * sizeof(struct pipe_vertex_element));
    llvmpipe->num_vertex_elements = count;
 
-   llvmpipe->dirty |= SP_NEW_VERTEX;
+   llvmpipe->dirty |= LP_NEW_VERTEX;
 
    draw_set_vertex_elements(llvmpipe->draw, count, attribs);
 }
@@ -67,7 +67,7 @@ llvmpipe_set_vertex_buffers(struct pipe_context *pipe,
    memcpy(llvmpipe->vertex_buffer, buffers, count * sizeof(buffers[0]));
    llvmpipe->num_vertex_buffers = count;
 
-   llvmpipe->dirty |= SP_NEW_VERTEX;
+   llvmpipe->dirty |= LP_NEW_VERTEX;
 
    draw_set_vertex_buffers(llvmpipe->draw, count, buffers);
 }
index 8ed8f553aabd573429aa50603b0e1e7de83295f1..4d78a53c4f50af115258900ce0441a0b0267961c 100644 (file)
@@ -28,8 +28,8 @@
 /* Authors:  Keith Whitwell <keith@tungstengraphics.com>
  */
 
-#ifndef SP_SURFACE_H
-#define SP_SURFACE_H
+#ifndef LP_SURFACE_H
+#define LP_SURFACE_H
 
 
 struct llvmpipe_context;
@@ -39,4 +39,4 @@ extern void
 lp_init_surface_functions(struct llvmpipe_context *lp);
 
 
-#endif /* SP_SURFACE_H */
+#endif /* LP_SURFACE_H */
index 3cf292dcbdaf49d773759d3cc12ebcb248c158c0..8d380b6e285426aab986c6518f3ef97919754b3a 100644 (file)
@@ -25,8 +25,8 @@
  * 
  **************************************************************************/
 
-#ifndef SP_TEX_SAMPLE_H
-#define SP_TEX_SAMPLE_H
+#ifndef LP_TEX_SAMPLE_H
+#define LP_TEX_SAMPLE_H
 
 
 #include "tgsi/tgsi_exec.h"
@@ -70,4 +70,4 @@ lp_get_samples_vertex(struct tgsi_sampler *tgsi_sampler,
                       float rgba[NUM_CHANNELS][QUAD_SIZE]);
 
 
-#endif /* SP_TEX_SAMPLE_H */
+#endif /* LP_TEX_SAMPLE_H */
index 23b37c61c7cf80d9c4d6bf87528d09e000094efd..dc688b238dd9ef703fc3e82be538c4e3538f4fab 100644 (file)
@@ -25,8 +25,8 @@
  * 
  **************************************************************************/
 
-#ifndef SP_TEXTURE_H
-#define SP_TEXTURE_H
+#ifndef LP_TEXTURE_H
+#define LP_TEXTURE_H
 
 
 #include "pipe/p_state.h"
@@ -80,4 +80,4 @@ extern void
 llvmpipe_init_screen_texture_funcs(struct pipe_screen *screen);
 
 
-#endif /* SP_TEXTURE */
+#endif /* LP_TEXTURE */
index ac3b17cce32e554a144655e72bb7801cb00dd6fe..91e14668134e1d07849f6ccd681b9c50bc6fc9fe 100644 (file)
@@ -25,8 +25,8 @@
  * 
  **************************************************************************/
 
-#ifndef SP_TILE_CACHE_H
-#define SP_TILE_CACHE_H
+#ifndef LP_TILE_CACHE_H
+#define LP_TILE_CACHE_H
 
 #define TILE_CLEAR_OPTIMIZATION 1
 
@@ -102,5 +102,5 @@ lp_get_cached_tile_tex(struct llvmpipe_context *llvmpipe,
                        int face, int level);
 
 
-#endif /* SP_TILE_CACHE_H */
+#endif /* LP_TILE_CACHE_H */
 
index ec371c00db694e21d099611329dbd20a735ed489..268336b69035d1b6a63f3ec1ba7d8e7e4d45fa59 100644 (file)
@@ -31,8 +31,8 @@
  */
 
 
-#ifndef SP_WINSYS_H
-#define SP_WINSYS_H
+#ifndef LP_WINSYS_H
+#define LP_WINSYS_H
 
 
 #ifdef __cplusplus
@@ -62,4 +62,4 @@ llvmpipe_get_texture_buffer( struct pipe_texture *texture,
 }
 #endif
 
-#endif /* SP_WINSYS_H */
+#endif /* LP_WINSYS_H */