st/wgl: remove unneeded inline qualifiers
authorBrian Paul <brianp@vmware.com>
Fri, 20 May 2016 20:24:32 +0000 (14:24 -0600)
committerBrian Paul <brianp@vmware.com>
Thu, 30 Jun 2016 18:43:50 +0000 (12:43 -0600)
No effect on size of the .o files (optimized build).

Reviewed-by: José Fonseca <jfonseca@vmware.com>
src/gallium/state_trackers/wgl/stw_framebuffer.c
src/gallium/state_trackers/wgl/stw_tls.c

index d770adb2a55b2ced6ff2a6db008e8f1493cc6924..09b57766dc0b72874d20a7a6f4b58dcdbd7c38a8 100644 (file)
@@ -47,7 +47,7 @@
  * If a stw_framebuffer is found, lock it and return the pointer.
  * Else, return NULL.
  */
-static inline struct stw_framebuffer *
+static struct stw_framebuffer *
 stw_framebuffer_from_hwnd_locked(HWND hwnd)
 {
    struct stw_framebuffer *fb;
@@ -367,7 +367,7 @@ stw_framebuffer_cleanup(void)
  * Given an hdc, return the corresponding stw_framebuffer.
  * The returned stw_framebuffer will have its mutex locked.
  */
-static inline struct stw_framebuffer *
+static struct stw_framebuffer *
 stw_framebuffer_from_hdc_locked(HDC hdc)
 {
    HWND hwnd;
index 041066f5007651ad8f3f9e104b7c3eb07457263f..9b7d60c6d8c33ef20847a6e12c540cb2026c9fc9 100644 (file)
@@ -50,7 +50,7 @@ static CRITICAL_SECTION g_mutex = {
 static struct stw_tls_data *g_pendingTlsData = NULL;
 
 
-static inline struct stw_tls_data *
+static struct stw_tls_data *
 stw_tls_data_create(DWORD dwThreadId);
 
 static struct stw_tls_data *
@@ -111,7 +111,7 @@ stw_tls_init(void)
 /**
  * Install windows hook for a given thread (not necessarily the current one).
  */
-static inline struct stw_tls_data *
+static struct stw_tls_data *
 stw_tls_data_create(DWORD dwThreadId)
 {
    struct stw_tls_data *data;