llvmpipe: s/textured/texture/
authorBrian Paul <brianp@vmware.com>
Tue, 9 Feb 2010 00:34:59 +0000 (17:34 -0700)
committerBrian Paul <brianp@vmware.com>
Tue, 9 Feb 2010 00:34:59 +0000 (17:34 -0700)
src/gallium/drivers/llvmpipe/lp_scene.c
src/gallium/drivers/llvmpipe/lp_scene.h
src/gallium/drivers/llvmpipe/lp_setup.c

index 0421c506d8200740ea553f35b5ecb4d7d2208455..b7116297ece0b01ad8c2acb5e2eb5c55d52d1984 100644 (file)
@@ -265,8 +265,8 @@ lp_scene_texture_reference( struct lp_scene *scene,
  * Does this scene have a reference to the given texture?
  */
 boolean
-lp_scene_is_textured_referenced( const struct lp_scene *scene,
-                                 const struct pipe_texture *texture )
+lp_scene_is_texture_referenced( const struct lp_scene *scene,
+                                const struct pipe_texture *texture )
 {
    const struct texture_ref *ref_list = &scene->textures;
    const struct texture_ref *ref;
index 7db2165cf144a2944452042805062588eb5e4dcd..fb478cc2eb58ea50b678731836381309797445f3 100644 (file)
@@ -163,8 +163,8 @@ unsigned lp_scene_bin_size( const struct lp_scene *scene, unsigned x, unsigned y
 void lp_scene_texture_reference( struct lp_scene *scene,
                                  struct pipe_texture *texture );
 
-boolean lp_scene_is_textured_referenced( const struct lp_scene *scene,
-                                         const struct pipe_texture *texture );
+boolean lp_scene_is_texture_referenced( const struct lp_scene *scene,
+                                        const struct pipe_texture *texture );
 
 
 /**
index 2e3ef4ae5cda8bf351a8ccf3515018faa2d5da7a..3186069899d3fe2961fadd65bb6b11377314b0b1 100644 (file)
@@ -516,7 +516,7 @@ lp_setup_is_texture_referenced( const struct setup_context *setup,
 
    /* check textures referenced by the scene */
    for (i = 0; i < Elements(setup->scenes); i++) {
-      if (lp_scene_is_textured_referenced(setup->scenes[i], texture)) {
+      if (lp_scene_is_texture_referenced(setup->scenes[i], texture)) {
          return PIPE_REFERENCED_FOR_READ;
       }
    }