[Mesa-dev] [PATCH 2/4] glapi/hgl: remove the final user of _glapi_check_table()

Emil Velikov emil.l.velikov at gmail.com
Thu Aug 25 15:58:59 UTC 2016


From: Emil Velikov <emil.velikov at collabora.com>

The symbol is a no-op since, the EXTRA_DEBUG macro is not set in the
build. Unused by !Haiku people/platforms since 2010 (commit
a73c6540d9a7f6e26d8568ba2fc522cb865f0a6c) while the Haiku C++ wrapper
has no obvious users.

Cc: Alexander von Gluck IV <kallisti5 at unixzen.com>
Signed-off-by: Emil Velikov <emil.velikov at collabora.com>
---
 src/hgl/GLDispatcher.cpp | 8 --------
 src/hgl/GLDispatcher.h   | 2 --
 2 files changed, 10 deletions(-)

diff --git a/src/hgl/GLDispatcher.cpp b/src/hgl/GLDispatcher.cpp
index a1e9053..f9709e4 100644
--- a/src/hgl/GLDispatcher.cpp
+++ b/src/hgl/GLDispatcher.cpp
@@ -58,14 +58,6 @@ BGLDispatcher::~BGLDispatcher()
 
 
 status_t
-BGLDispatcher::CheckTable(const struct _glapi_table* table)
-{
-	_glapi_check_table(table ? table : _glapi_get_dispatch());
-	return B_OK;
-}
-
-
-status_t
 BGLDispatcher::SetTable(struct _glapi_table* table)
 {
 	_glapi_set_dispatch(table);
diff --git a/src/hgl/GLDispatcher.h b/src/hgl/GLDispatcher.h
index 7ee095d..8aaf58a 100644
--- a/src/hgl/GLDispatcher.h
+++ b/src/hgl/GLDispatcher.h
@@ -34,8 +34,6 @@ class BGLDispatcher
 		void*					CurrentContext();
 
 		struct _glapi_table* 	Table();
-		status_t				CheckTable(
-									const struct _glapi_table* dispatch = NULL);
 		status_t				SetTable(struct _glapi_table* dispatch);
 		uint32					TableSize();
 
-- 
2.9.0



More information about the mesa-dev mailing list