summaryrefslogtreecommitdiff
path: root/src/ffb_wid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ffb_wid.c')
-rw-r--r--src/ffb_wid.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/ffb_wid.c b/src/ffb_wid.c
index 294a4f1..f9a13a8 100644
--- a/src/ffb_wid.c
+++ b/src/ffb_wid.c
@@ -449,20 +449,3 @@ FFBWidChangeBuffer(FFBPtr pFfb, unsigned int wid, int visible)
update_wids(pFfb, index);
}
}
-
-/* Used by DRI part of driver. */
-Bool
-FFBWidIsShared(FFBPtr pFfb, unsigned int wid)
-{
- ffb_dac_info_t *p = &pFfb->dac_info;
- ffb_wid_pool_t *table = &p->wid_table;
- int index = wid >> table->wid_shift;
-
- if (index < 0 || index >= table->num_wids)
- return TRUE;
-
- if (table->wid_pool[index].canshare == TRUE)
- return TRUE;
-
- return FALSE;
-}