Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
glow-extras
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glow
glow-extras
Merge requests
!113
fixed outline bug for multiple renderables
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fixed outline bug for multiple renderables
ak/develop
into
jn/develop
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Aaron Kreuzberg
requested to merge
ak/develop
into
jn/develop
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
jn/develop
jn/develop (base)
and
latest version
latest version
a4030337
1 commit,
3 years ago
1 file
+
1
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
viewer/shader/glow-viewer/pp.pickvis.fsh
+
1
−
1
Options
@@ -19,7 +19,7 @@ vec2 o_2 = vec2(0,1);
@@ -19,7 +19,7 @@ vec2 o_2 = vec2(0,1);
{
{
vec2 o = u * o_1 + v * o_2;
vec2 o = u * o_1 + v * o_2;
uvec4 curr_id = uvec4(texture(uTexPick, fragC_n + o));
uvec4 curr_id = uvec4(texture(uTexPick, fragC_n + o));
if(FragID != uFragID && curr_id.y == uFragID)
if(FragID != uFragID && curr_id.y == uFragID
&& curr_id.x == uRenderableID
)
{
{
return true;
return true;
}
}
Loading