From 91cc0d8cf6a2cf264c243ca3b3e99b5fd4044c29 Mon Sep 17 00:00:00 2001 From: Christoph Heinrich Date: Mon, 20 Feb 2023 04:32:50 +0100 Subject: options: transition options from OPT_FLAG to OPT_BOOL c78482045444c488bb7948305d583a55d17cd236 introduced a bool option type as a replacement for the flag type, but didn't actually transition and remove the flag type because it would have been too much mundane work. --- video/out/gpu/context.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'video/out/gpu/context.h') diff --git a/video/out/gpu/context.h b/video/out/gpu/context.h index dae95fa666..a7510c2afd 100644 --- a/video/out/gpu/context.h +++ b/video/out/gpu/context.h @@ -6,9 +6,9 @@ #include "ra.h" struct ra_ctx_opts { - int allow_sw; // allow software renderers + bool allow_sw; // allow software renderers int want_alpha; // create an alpha framebuffer if possible - int debug; // enable debugging layers/callbacks etc. + bool debug; // enable debugging layers/callbacks etc. bool probing; // the backend was auto-probed char *context_name; // filter by `ra_ctx_fns.name` char *context_type; // filter by `ra_ctx_fns.type` -- cgit v1.2.3