File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ export enum Binding {
41
41
LZ4 = 'lwjgl-lz4' ,
42
42
MEOW = 'lwjgl-meow' ,
43
43
MESHOPTIMIZER = 'lwjgl-meshoptimizer' ,
44
+ MSDFGEN = 'lwjgl-msdfgen' ,
44
45
NANOVG = 'lwjgl-nanovg' ,
45
46
NFD = 'lwjgl-nfd' ,
46
47
NUKLEAR = 'lwjgl-nuklear' ,
Original file line number Diff line number Diff line change @@ -20,6 +20,13 @@ export default (prev: BuildBindings): BuildBindings => ({
20
20
[ Binding . LMDB ] : { ...( prev . byId [ Binding . LMDB ] as BindingDefinition ) , natives : NATIVE_ALL } ,
21
21
[ Binding . LZ4 ] : { ...( prev . byId [ Binding . LZ4 ] as BindingDefinition ) , natives : NATIVE_ALL } ,
22
22
[ Binding . MESHOPTIMIZER ] : { ...( prev . byId [ Binding . MESHOPTIMIZER ] as BindingDefinition ) , natives : NATIVE_ALL } ,
23
+ [ Binding . MSDFGEN ] : {
24
+ id : Binding . MSDFGEN ,
25
+ title : 'msdfgen' ,
26
+ description : 'Multi-channel signed distance field generator.' ,
27
+ natives : NATIVE_ALL ,
28
+ website : 'https://github.com/Chlumsky/msdfgen' ,
29
+ } ,
23
30
[ Binding . NANOVG ] : { ...( prev . byId [ Binding . NANOVG ] as BindingDefinition ) , natives : NATIVE_ALL } ,
24
31
[ Binding . NFD ] : { ...( prev . byId [ Binding . NFD ] as BindingDefinition ) , natives : NATIVE_ALL } ,
25
32
[ Binding . NUKLEAR ] : { ...( prev . byId [ Binding . NUKLEAR ] as BindingDefinition ) , natives : NATIVE_ALL } ,
You can’t perform that action at this time.
0 commit comments