mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-07 21:23:32 +00:00
engine gl: specify gl as beta
The engine hasn't been maintained propelry and it's not functional.
This commit is contained in:
parent
597b88b118
commit
0dec5a44b6
3 changed files with 4 additions and 4 deletions
|
@ -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'),
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
option('engines',
|
||||
type: 'array',
|
||||
choices: ['sw', 'gl'],
|
||||
choices: ['sw', 'gl_beta'],
|
||||
value: ['sw'],
|
||||
description: 'Enable Rasterizer Engine in thorvg')
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue