aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJerome Duval <[email protected]>2017-02-22 16:02:51 +0000
committerAlexander von Gluck IV <[email protected]>2017-02-24 14:10:57 +0000
commit62e27170a7f7a90091b4121002b7ce209ac7ccb0 (patch)
tree0ab3003d5b713ee56e15a7fad61a1d24f689eb9f
parent40b0c8666c337fd0fdff42ce70703cd300abcf0c (diff)
haiku/winsys: fix dt prototype args
-rw-r--r--src/gallium/winsys/sw/hgl/hgl_sw_winsys.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/winsys/sw/hgl/hgl_sw_winsys.c b/src/gallium/winsys/sw/hgl/hgl_sw_winsys.c
index 89dd5471b09..f7bc907ea5c 100644
--- a/src/gallium/winsys/sw/hgl/hgl_sw_winsys.c
+++ b/src/gallium/winsys/sw/hgl/hgl_sw_winsys.c
@@ -106,7 +106,8 @@ hgl_winsys_convert_cs(enum pipe_format format)
static struct sw_displaytarget*
hgl_winsys_displaytarget_create(struct sw_winsys* winsys,
unsigned textureUsage, enum pipe_format format, unsigned width,
- unsigned height, unsigned alignment, unsigned* stride)
+ unsigned height, unsigned alignment, const void *front_private,
+ unsigned* stride)
{
struct haiku_displaytarget* haikuDisplayTarget
= CALLOC_STRUCT(haiku_displaytarget);