diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2020-01-22 02:49:53 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2020-01-22 02:49:53 +0000 |
commit | d264279e28002d81821c883795911844a4c01a2c (patch) | |
tree | b0481616eda55b543a0dc1487d096c3239885c41 /lib/mesa/src/gallium/winsys/sw/hgl | |
parent | fdcc03929065b5bf5dd93553db219ea3e05c8c34 (diff) |
Merge Mesa 19.2.8
Diffstat (limited to 'lib/mesa/src/gallium/winsys/sw/hgl')
-rw-r--r-- | lib/mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.c b/lib/mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.c index f7bc907ea..9d37c5aac 100644 --- a/lib/mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.c +++ b/lib/mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.c @@ -81,12 +81,12 @@ hgl_winsys_destroy(struct sw_winsys* winsys) } -static boolean +static bool hgl_winsys_is_displaytarget_format_supported(struct sw_winsys* winsys, unsigned textureUsage, enum pipe_format format) { // TODO STUB - return TRUE; + return true; } static color_space @@ -164,11 +164,11 @@ hgl_winsys_displaytarget_from_handle(struct sw_winsys* winsys, } -static boolean +static bool hgl_winsys_displaytarget_get_handle(struct sw_winsys* winsys, struct sw_displaytarget* displayTarget, struct winsys_handle* whandle) { - return FALSE; + return false; } |