mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-08 05:33:36 +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)
|
config_h.set10('THORVG_SW_RASTER_SUPPORT', true)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('engines').contains('gl') == true
|
if get_option('engines').contains('gl_beta') == true
|
||||||
config_h.set10('THORVG_GL_RASTER_SUPPORT', true)
|
config_h.set10('THORVG_GL_RASTER_SUPPORT', true)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
@ -128,7 +128,7 @@ Summary:
|
||||||
get_option('prefix'),
|
get_option('prefix'),
|
||||||
simd_type,
|
simd_type,
|
||||||
get_option('engines').contains('sw'),
|
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('tvg'),
|
||||||
all_loaders or get_option('loaders').contains('svg'),
|
all_loaders or get_option('loaders').contains('svg'),
|
||||||
all_loaders or get_option('loaders').contains('png'),
|
all_loaders or get_option('loaders').contains('png'),
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
option('engines',
|
option('engines',
|
||||||
type: 'array',
|
type: 'array',
|
||||||
choices: ['sw', 'gl'],
|
choices: ['sw', 'gl_beta'],
|
||||||
value: ['sw'],
|
value: ['sw'],
|
||||||
description: 'Enable Rasterizer Engine in thorvg')
|
description: 'Enable Rasterizer Engine in thorvg')
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ if get_option('engines').contains('sw') == true
|
||||||
subdir('sw_engine')
|
subdir('sw_engine')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('engines').contains('gl') == true
|
if get_option('engines').contains('gl_beta') == true
|
||||||
subdir('gl_engine')
|
subdir('gl_engine')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue