[Mesa-dev] [PATCH 2/3] mesa: remove unused _mesa_create_nameless_texture()

Anuj Phogat anuj.phogat at gmail.com
Thu Oct 8 09:42:30 PDT 2015


On Thu, Oct 8, 2015 at 7:20 AM, Brian Paul <brianp at vmware.com> wrote:
> ---
>  src/mesa/main/texobj.c | 20 --------------------
>  src/mesa/main/texobj.h |  3 ---
>  2 files changed, 23 deletions(-)
>
> diff --git a/src/mesa/main/texobj.c b/src/mesa/main/texobj.c
> index aa4b38c..66eacf8 100644
> --- a/src/mesa/main/texobj.c
> +++ b/src/mesa/main/texobj.c
> @@ -1185,26 +1185,6 @@ invalidate_tex_image_error_check(struct gl_context *ctx, GLuint texture,
>     return t;
>  }
>
> -/**
> - * Wrapper for the driver function. Need this because _mesa_new_texture_object
> - * permits a target of 0 and does not initialize targetIndex.
> - */
> -struct gl_texture_object *
> -_mesa_create_nameless_texture(struct gl_context *ctx, GLenum target)
> -{
> -   struct gl_texture_object *texObj = NULL;
> -   GLint targetIndex;
> -
> -   if (target == 0)
> -      return texObj;
> -
> -   texObj = ctx->Driver.NewTextureObject(ctx, 0, target);
> -   targetIndex = _mesa_tex_target_to_index(ctx, texObj->Target);
> -   assert(targetIndex < NUM_TEXTURE_TARGETS);
> -   texObj->TargetIndex = targetIndex;
> -
> -   return texObj;
> -}
>
>  /**
>   * Helper function for glCreateTextures and glGenTextures. Need this because
> diff --git a/src/mesa/main/texobj.h b/src/mesa/main/texobj.h
> index 690878c..8421337 100644
> --- a/src/mesa/main/texobj.h
> +++ b/src/mesa/main/texobj.h
> @@ -202,9 +202,6 @@ _mesa_unlock_context_textures( struct gl_context *ctx );
>  extern void
>  _mesa_lock_context_textures( struct gl_context *ctx );
>
> -extern struct gl_texture_object *
> -_mesa_create_nameless_texture(struct gl_context *ctx, GLenum target);
> -
>  extern void
>  _mesa_delete_nameless_texture(struct gl_context *ctx,
>                                struct gl_texture_object *texObj);
> --
> 1.9.1
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reviewed-by: Anuj Phogat <anuj.phogat at gmail.com>


More information about the mesa-dev mailing list