We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb3ca49 commit c90fe39Copy full SHA for c90fe39
.github/workflows/test.yml
@@ -40,6 +40,6 @@ jobs:
40
# if: matrix.os == 'windows-2022'
41
# run: npm run test-ci
42
43
- - name: Test - MacOS
44
- if: matrix.os == 'macos-14'
45
- run: npm run test-ci
+ # - name: Test - MacOS
+ # if: matrix.os == 'macos-14'
+ # run: npm run test-ci
test/init.js
@@ -12,10 +12,14 @@ const initOptsMac = {
12
...initOpts,
13
isGles3: false,
14
isWebGL2: false,
15
+ major: 2,
16
+ minor: 1,
17
};
18
19
if (platform === 'darwin') {
20
glfw.windowHint(glfw.STENCIL_BITS, 8);
21
+ // this would be nice... - https://github.com/glfw/glfw/pull/2571
22
+ // glfw.windowHint(glfw.CONTEXT_RENDERER, glfw.SOFTWARE_RENDERER);
23
}
24
25
const inited = init(platform === 'darwin' ? initOptsMac : initOpts);
0 commit comments