From fd39c5865820b396c2007c6b864962ec50048e43 Mon Sep 17 00:00:00 2001 From: Grim Maple Date: Sat, 22 Oct 2022 15:32:16 +0300 Subject: [PATCH] Fix exmaples, Add them to pipeline --- .github/workflows/pipeline.yml | 22 ++++++++++++++++++++-- examples/tetris/src/model.d | 4 ++-- src/dlangui/platforms/common/platform.d | 11 +++++++++++ src/dlangui/platforms/windows/winapp.d | 4 ++-- 4 files changed, 35 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index be0675b2..3048f29b 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -28,13 +28,31 @@ jobs: uses: dlang-community/setup-dlang@v1 with: compiler: ${{ matrix.dc }} - + - name: Checkout source uses: actions/checkout@v2 - + - name: 'Build & Test' run: | # Build and run tests, as defined by `unittest` configuration # In this mode, `mainSourceFile` is excluded and `version (unittest)` are included # See https://dub.pm/package-format-json.html#configurations dub test + cd examples/bezier + dub build -b=release + cd ../dminer + dub build -b=release + cd ../dmledit + dub build -b=release + cd ../dragon + dub build -b=release + cd ../example1 + dub build -b=release + cd ../helloworld + dub build -b=release + cd ../ircclient + dub build -b=release + cd ../opengl + dub build -b=release + cd ../tetris + dub build -b=release \ No newline at end of file diff --git a/examples/tetris/src/model.d b/examples/tetris/src/model.d index fe1f8384..40e7beac 100644 --- a/examples/tetris/src/model.d +++ b/examples/tetris/src/model.d @@ -190,11 +190,11 @@ struct Cup { private FigurePosition _currentFigure; /// current figure index, orientation, position - @property ref FigurePosition currentFigure() { return _currentFigure; } + @property ref FigurePosition currentFigure() return { return _currentFigure; } private FigurePosition _nextFigure; /// next figure - @property ref FigurePosition nextFigure() { return _nextFigure; } + @property ref FigurePosition nextFigure() return { return _nextFigure; } /// returns number of columns @property int cols() { diff --git a/src/dlangui/platforms/common/platform.d b/src/dlangui/platforms/common/platform.d index 227f2cf0..7b036187 100644 --- a/src/dlangui/platforms/common/platform.d +++ b/src/dlangui/platforms/common/platform.d @@ -1851,6 +1851,17 @@ class Platform { */ int multisamples = 0; } + + /** + * Returns the amount of multisamples. Returns 0 if no OpenGL support + */ + int getMultisamples() + { + static if(ENABLE_OPENGL) + return multisamples; + else + return 0; + } /** * close window * diff --git a/src/dlangui/platforms/windows/winapp.d b/src/dlangui/platforms/windows/winapp.d index ef6dcf95..e98ac79e 100644 --- a/src/dlangui/platforms/windows/winapp.d +++ b/src/dlangui/platforms/windows/winapp.d @@ -448,7 +448,7 @@ class Win32Window : Window { parenthwnd, // parent window handle null, // window menu handle _hInstance, // program instance handle - platform.multisamples ? cast(void*)null : cast(void*)this); // creation parameters + platform.getMultisamples ? cast(void*)null : cast(void*)this); // creation parameters static if (ENABLE_OPENGL) { /* initialize OpenGL rendering */ HDC hDC = GetDC(_hwnd); @@ -485,9 +485,9 @@ class Win32Window : Window { } } } + sharedGLContext.initGLBindings(hDC); } - sharedGLContext.initGLBindings(hDC); isInitialized = true; RECT rect;