From c7aa234d57ae1b4749bf4dc71ac21344618f1af4 Mon Sep 17 00:00:00 2001 From: Peter Hartmann Date: Tue, 3 May 2022 09:51:30 +0200 Subject: [PATCH] CI: Use OpenGL backend on Windows We currently don't support the D3D11 backend, since we rely on OpenGL functionality when rendering textures, see e.g. qskCreateTextureRaster(). --- .github/workflows/qmake.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/qmake.yml b/.github/workflows/qmake.yml index 8308be14..12a9048c 100644 --- a/.github/workflows/qmake.yml +++ b/.github/workflows/qmake.yml @@ -244,6 +244,8 @@ jobs: build-windows-qt-lts: name: Windows Qt 6.2 (LTS) build runs-on: windows-latest + env: + QSG_RHI_BACKEND: opengl steps: - uses: actions/checkout@v2 - name: Cache Qt @@ -299,6 +301,8 @@ jobs: build-windows-qt-current: name: Windows Qt 6.3 (current) build runs-on: windows-latest + env: + QSG_RHI_BACKEND: opengl steps: - uses: actions/checkout@v2 - name: Cache Qt