diff options
author | Matt Turner <[email protected]> | 2014-06-14 23:15:05 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-06-17 10:18:18 -0700 |
commit | 52a4065493febf9a7f7ed7801c90a1515526c9ad (patch) | |
tree | f224675562df242e89837733f5de520eb5954cf0 | |
parent | 7f3f9b1a68312d145bc3a4b2d28ddf13527f260e (diff) |
mesa: Remove unused functions from perfomance query code.
Perhaps useful for debugging? Never used otherwise. Added by commit
8cf5bdad.
Reviewed-by: Tapani Pälli <[email protected]>
Reviewed-by: Petri Latvala <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
-rw-r--r-- | src/mesa/main/performance_monitor.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/mesa/main/performance_monitor.c b/src/mesa/main/performance_monitor.c index 9d1a6b4d807..c26eda4c63b 100644 --- a/src/mesa/main/performance_monitor.c +++ b/src/mesa/main/performance_monitor.c @@ -164,19 +164,6 @@ counterid_to_index(GLuint counterid) return counterid - 1; } -static inline GLuint -index_to_counterid(GLuint index) -{ - return index + 1; -} - -static inline bool -counterid_valid(const struct gl_perf_monitor_group *group_obj, - GLuint counterid) -{ - return get_counter(group_obj, counterid_to_index(counterid)) != NULL; -} - /*****************************************************************************/ void GLAPIENTRY |