summaryrefslogtreecommitdiffstats
path: root/src/loader/loader_dri3_helper.c
diff options
context:
space:
mode:
authorEric Anholt <[email protected]>2018-08-30 10:24:51 -0700
committerEric Anholt <[email protected]>2018-09-05 10:11:27 -0700
commit16f17e3a3c1a2f171f882e09bb69ba09a86deb49 (patch)
treec4630850d1adf0570c7b70c6783467529c8195a2 /src/loader/loader_dri3_helper.c
parent4e1f8d82c2176be273a8d49f804f5b817252facc (diff)
loader: Drop unused argument from dri3_update_drawable().
The argument has never been used since the function was added. Reviewed-by: Michel Dänzer <[email protected]>
Diffstat (limited to 'src/loader/loader_dri3_helper.c')
-rw-r--r--src/loader/loader_dri3_helper.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/loader/loader_dri3_helper.c b/src/loader/loader_dri3_helper.c
index 91bad86afd8..b6252148583 100644
--- a/src/loader/loader_dri3_helper.c
+++ b/src/loader/loader_dri3_helper.c
@@ -1427,8 +1427,7 @@ no_shm_fence:
* track the geometry of the drawable
*/
static int
-dri3_update_drawable(__DRIdrawable *driDrawable,
- struct loader_dri3_drawable *draw)
+dri3_update_drawable(struct loader_dri3_drawable *draw)
{
mtx_lock(&draw->mtx);
if (draw->first_init) {
@@ -1911,7 +1910,7 @@ loader_dri3_get_buffers(__DRIdrawable *driDrawable,
front = NULL;
back = NULL;
- if (!dri3_update_drawable(driDrawable, draw))
+ if (!dri3_update_drawable(draw))
return false;
dri3_update_num_back(draw);
@@ -2066,7 +2065,7 @@ dri3_find_back_alloc(struct loader_dri3_drawable *draw)
back = draw->buffers[id];
/* Allocate a new back if we haven't got one */
if (!back && draw->back_format != __DRI_IMAGE_FORMAT_NONE &&
- dri3_update_drawable(draw->dri_drawable, draw))
+ dri3_update_drawable(draw))
back = dri3_alloc_render_buffer(draw, draw->back_format,
draw->width, draw->height, draw->depth);