Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Molstar
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Michal Malý
Molstar
Commits
da1deee7
Commit
da1deee7
authored
5 years ago
by
Alexander Rose
Browse files
Options
Downloads
Patches
Plain Diff
switched off marker interpolation for webgl2
parent
a4eaff31
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/mol-gl/shader/chunks/common-frag-params.glsl.ts
+5
-1
5 additions, 1 deletion
src/mol-gl/shader/chunks/common-frag-params.glsl.ts
src/mol-gl/shader/chunks/common-vert-params.glsl.ts
+5
-1
5 additions, 1 deletion
src/mol-gl/shader/chunks/common-vert-params.glsl.ts
with
10 additions
and
2 deletions
src/mol-gl/shader/chunks/common-frag-params.glsl.ts
+
5
−
1
View file @
da1deee7
...
@@ -5,7 +5,11 @@ uniform int uGroupCount;
...
@@ -5,7 +5,11 @@ uniform int uGroupCount;
uniform vec3 uHighlightColor;
uniform vec3 uHighlightColor;
uniform vec3 uSelectColor;
uniform vec3 uSelectColor;
varying float vMarker;
#if __VERSION__ != 300
varying float vMarker;
#else
flat in float vMarker;
#endif
varying vec3 vViewPosition;
varying vec3 vViewPosition;
...
...
This diff is collapsed.
Click to expand it.
src/mol-gl/shader/chunks/common-vert-params.glsl.ts
+
5
−
1
View file @
da1deee7
...
@@ -8,7 +8,11 @@ uniform int uGroupCount;
...
@@ -8,7 +8,11 @@ uniform int uGroupCount;
uniform vec2 uMarkerTexDim;
uniform vec2 uMarkerTexDim;
uniform sampler2D tMarker;
uniform sampler2D tMarker;
varying float vMarker;
#if __VERSION__ != 300
varying float vMarker;
#else
flat out float vMarker;
#endif
varying vec3 vViewPosition;
varying vec3 vViewPosition;
`
`
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment