Mesa (master): mesa: Remove the dead Varyings list in the program.

Eric Anholt anholt at kemper.freedesktop.org
Thu Jan 5 17:19:02 UTC 2012


Module: Mesa
Branch: master
Commit: 501e2e3b6d64de9937d397b49ad3930d4bac3083
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=501e2e3b6d64de9937d397b49ad3930d4bac3083

Author: Eric Anholt <eric at anholt.net>
Date:   Tue Jan  3 13:27:18 2012 -0800

mesa: Remove the dead Varyings list in the program.

Reviewed-by: Paul Berry <stereotype441 at gmail.com>

---

 src/mesa/main/mtypes.h    |    1 -
 src/mesa/main/shaderobj.c |    5 -----
 2 files changed, 0 insertions(+), 6 deletions(-)

diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 50d7e34..332b80a 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -2297,7 +2297,6 @@ struct gl_shader_program
    /** Which texture target is being sampled (TEXTURE_1D/2D/3D/etc_INDEX) */
    gl_texture_index SamplerTargets[MAX_SAMPLERS];
 
-   struct gl_program_parameter_list *Varying;
    GLboolean LinkStatus;   /**< GL_LINK_STATUS */
    GLboolean Validated;
    GLboolean _Used;        /**< Ever used for drawing? */
diff --git a/src/mesa/main/shaderobj.c b/src/mesa/main/shaderobj.c
index 454007f..de66851 100644
--- a/src/mesa/main/shaderobj.c
+++ b/src/mesa/main/shaderobj.c
@@ -286,11 +286,6 @@ _mesa_clear_shader_program_data(struct gl_context *ctx,
       shProg->UniformHash = NULL;
    }
 
-   if (shProg->Varying) {
-      _mesa_free_parameter_list(shProg->Varying);
-      shProg->Varying = NULL;
-   }
-
    assert(shProg->InfoLog != NULL);
    ralloc_free(shProg->InfoLog);
    shProg->InfoLog = ralloc_strdup(shProg, "");




More information about the mesa-commit mailing list