diff --git a/meson.build b/meson.build index 9978b118..496d71da 100644 --- a/meson.build +++ b/meson.build @@ -18,7 +18,7 @@ if get_option('engines').contains('sw') == true config_h.set10('THORVG_SW_RASTER_SUPPORT', true) endif -if get_option('engines').contains('gl') == true +if get_option('engines').contains('gl_beta') == true config_h.set10('THORVG_GL_RASTER_SUPPORT', true) endif @@ -128,7 +128,7 @@ Summary: get_option('prefix'), simd_type, get_option('engines').contains('sw'), - get_option('engines').contains('gl'), + get_option('engines').contains('gl_beta'), all_loaders or get_option('loaders').contains('tvg'), all_loaders or get_option('loaders').contains('svg'), all_loaders or get_option('loaders').contains('png'), diff --git a/meson_options.txt b/meson_options.txt index 114e0c5b..e840b59e 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,6 +1,6 @@ option('engines', type: 'array', - choices: ['sw', 'gl'], + choices: ['sw', 'gl_beta'], value: ['sw'], description: 'Enable Rasterizer Engine in thorvg') diff --git a/src/lib/meson.build b/src/lib/meson.build index f28760d2..418fc5aa 100644 --- a/src/lib/meson.build +++ b/src/lib/meson.build @@ -4,7 +4,7 @@ if get_option('engines').contains('sw') == true subdir('sw_engine') endif -if get_option('engines').contains('gl') == true +if get_option('engines').contains('gl_beta') == true subdir('gl_engine') endif