fix win32 version

This commit is contained in:
Vadim Lopatin 2014-03-18 21:28:12 +04:00
parent abb5417819
commit 6d180a7a1b
2 changed files with 3 additions and 1 deletions

View File

@ -41,7 +41,7 @@ extern (C) int UIAppMain(string[] args) {
// create window
Window window = Platform.instance().createWindow("My Window", null);
static if (false) {
static if (true) {
LinearLayout layout = new LinearLayout();
layout.addChild((new TextWidget()).textColor(0x00802000).text("Text widget 0"));
layout.addChild((new TextWidget()).textColor(0x40FF4000).text("Text widget"));

View File

@ -599,6 +599,8 @@ int myWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int
FontManager.instance = fontMan;
}
currentTheme = createDefaultTheme();
version (USE_OPENGL) {
import derelict.opengl3.gl3;
DerelictGL3.load();