engine gl: specify gl as beta

The engine hasn't been maintained propelry and it's not functional.
This commit is contained in:
Hermet Park 2023-05-12 11:11:27 +09:00 committed by Hermet Park
parent 597b88b118
commit 0dec5a44b6
3 changed files with 4 additions and 4 deletions

View file

@ -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'),

View file

@ -1,6 +1,6 @@
option('engines',
type: 'array',
choices: ['sw', 'gl'],
choices: ['sw', 'gl_beta'],
value: ['sw'],
description: 'Enable Rasterizer Engine in thorvg')

View file

@ -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