llvmpipe: s/textured/texture/

This commit is contained in:
Brian Paul 2010-02-08 17:34:59 -07:00
parent 4aeacdf853
commit b014d71fd4
3 changed files with 5 additions and 5 deletions

View 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;

View 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 );
/**

View 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;
}
}