diff options
author | Jerome Duval <[email protected]> | 2017-02-22 16:02:51 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-04-12 13:30:21 +0100 |
commit | f3ae08bd44533aac51134dee4c8ed94a0a86a966 (patch) | |
tree | bec82a717bb4a92cc4e0f0a09fcd698614013caf /src/gallium | |
parent | c1c39334dac70cbb5bce2a274e538cd2977023a7 (diff) |
haiku/winsys: fix dt prototype args
Add the missing front_private, introduced with earlier commit.
(cherry picked from commit 62e27170a7f7a90091b4121002b7ce209ac7ccb0)
Fixes: 2b676570960 ("gallium/swrast: fix front buffer blitting. (v2)")
Nominated-by: Emil Velikov <[email protected]>
[Emil Velikov: add commit message, fixes tag]
Signed-off-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/winsys/sw/hgl/hgl_sw_winsys.c | 3 |
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); |