Support for 'gb.gtk3.opengl' component.
[GB.GUI.OPENGL] * NEW: Support for 'gb.gtk3.opengl' component.
This commit is contained in:
parent
bbee396304
commit
3b8b6b5315
3 changed files with 5 additions and 3 deletions
|
@ -32,7 +32,7 @@ GB_DESC *GB_CLASSES[] EXPORT =
|
|||
NULL
|
||||
};
|
||||
|
||||
char *GB_INCLUDE EXPORT = "gb.qt4.opengl|gb.qt5.opengl|gb.gtk.opengl";
|
||||
char *GB_INCLUDE EXPORT = "gb.qt4.opengl|gb.qt5.opengl|gb.gtk.opengl|gb.gtk3.opengl";
|
||||
|
||||
int EXPORT GB_INIT(void)
|
||||
{
|
||||
|
@ -48,6 +48,8 @@ int EXPORT GB_INIT(void)
|
|||
comp = "gb.qt5.opengl";
|
||||
else if (strcmp(env, "gb.gtk") == 0)
|
||||
comp = "gb.gtk.opengl";
|
||||
else if (strcmp(env, "gb.gtk3") == 0)
|
||||
comp = "gb.gtk3.opengl";
|
||||
}
|
||||
|
||||
if (!comp)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
[Component]
|
||||
Key=gb.jit
|
||||
Version=3.16.0
|
||||
Version=3.16.90
|
||||
Authors=Benoît Minisini
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
Title=Gambas JIT compiler support
|
||||
Startup=Main
|
||||
Icon=.hidden/icon.png
|
||||
Version=3.16.0
|
||||
Version=3.16.90
|
||||
VersionFile=1
|
||||
Authors="Benoît Minisini"
|
||||
TabSize=2
|
||||
|
|
Loading…
Reference in a new issue