diff options
author | Emil Velikov <[email protected]> | 2016-06-13 14:27:54 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2016-06-13 15:31:28 +0100 |
commit | 23a7fca6aa07df1e074f7cf866dc9d2045fe0417 (patch) | |
tree | f39f3a9a9555f6e5ec91b91a0617c647b20eddd4 /src/mesa/main/context.c | |
parent | b81685eb32d7fd51f12cfdbac8b5f6046c416304 (diff) |
mesa: remove _mesa_init_get_hash()
The actual code of the function print_table_stats() is guarded
by a ifdef GET_DEBUG, which was not been defined in years.
The last fix in 2013 (7db6b5aa91a) indicates that it's rarely
used/tested. Since the issue has gone unnoticed for a whole year
(broken with 2ad4a475474).
Let's remove it for now. We can always revive it at a later stage.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 172c8548be9..1da7ac90792 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -407,8 +407,6 @@ one_time_init( struct gl_context *ctx ) /* per-API one-time init */ if (!(api_init_mask & (1 << ctx->API))) { - _mesa_init_get_hash(ctx); - _mesa_init_remap_table(); } |