Skip to content
Snippets Groups Projects
Commit 2aef5fb3 authored by Alexander Rose's avatar Alexander Rose
Browse files

fix use of WEBGL_provoking_vertex

parent 63a9aef5
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ Note that since we don't clearly distinguish between a public and private interf ...@@ -10,7 +10,7 @@ Note that since we don't clearly distinguish between a public and private interf
- Remove pca transform from components ui focus (too distracting) - Remove pca transform from components ui focus (too distracting)
- Fix artefacts with opaque outlines behind transparent objects - Fix artefacts with opaque outlines behind transparent objects
- Fix polymer trace visual not updating - Fix polymer trace visual not updating
- Fix use of `WEBGL_provoking_vertex`
## [v3.31.1] - 2023-02-05 ## [v3.31.1] - 2023-02-05
...@@ -19,8 +19,7 @@ Note that since we don't clearly distinguish between a public and private interf ...@@ -19,8 +19,7 @@ Note that since we don't clearly distinguish between a public and private interf
- The average position of the residues of the first chain should be in the first quadrant if there is more than one chain - The average position of the residues of the first chain should be in the first quadrant if there is more than one chain
- Add `HeadlessPluginContext` and `HeadlessScreenshotHelper` to be used in Node.js - Add `HeadlessPluginContext` and `HeadlessScreenshotHelper` to be used in Node.js
- Add example `image-renderer` - Add example `image-renderer`
- Fix wrong offset when rendering text with orthographic projectio - Fix wrong offset when rendering text with orthographic projection
n
- Update camera/handle helper when `devicePixelRatio` changes - Update camera/handle helper when `devicePixelRatio` changes
- Add various options to customize the axes camera-helper - Add various options to customize the axes camera-helper
- Fix issue with texture-mesh color smoothing when changing themes - Fix issue with texture-mesh color smoothing when changing themes
......
...@@ -541,7 +541,7 @@ export function getProvokingVertex(gl: GLRenderingContext): COMPAT_provoking_ver ...@@ -541,7 +541,7 @@ export function getProvokingVertex(gl: GLRenderingContext): COMPAT_provoking_ver
FIRST_VERTEX_CONVENTION: ext.FIRST_VERTEX_CONVENTION_WEBGL, FIRST_VERTEX_CONVENTION: ext.FIRST_VERTEX_CONVENTION_WEBGL,
LAST_VERTEX_CONVENTION: ext.LAST_VERTEX_CONVENTION_WEBGL, LAST_VERTEX_CONVENTION: ext.LAST_VERTEX_CONVENTION_WEBGL,
PROVOKING_VERTEX: ext.PROVOKING_VERTEX_WEBGL, PROVOKING_VERTEX: ext.PROVOKING_VERTEX_WEBGL,
provokingVertex: ext.provokingVertexWEBGL.bind(gl) provokingVertex: ext.provokingVertexWEBGL.bind(ext)
}; };
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment