Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RBComb Sample Visualizer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Pascal Engeler
RBComb Sample Visualizer
Commits
d0d74033
Commit
d0d74033
authored
9 months ago
by
Pascal Engeler
Browse files
Options
Downloads
Patches
Plain Diff
Added overlay shaders
parent
571dd826
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gui/resources/shaders/overlayShader.frag
+12
-0
12 additions, 0 deletions
gui/resources/shaders/overlayShader.frag
gui/resources/shaders/overlayShader.vert
+21
-0
21 additions, 0 deletions
gui/resources/shaders/overlayShader.vert
with
33 additions
and
0 deletions
gui/resources/shaders/overlayShader.frag
0 → 100644
+
12
−
0
View file @
d0d74033
#version 410 core
out
vec4
FragColor
;
in
vec2
tex_coord
;
uniform
sampler2D
imTexture
;
void
main
(){
FragColor
=
texture
(
imTexture
,
tex_coord
);
FragColor
.
a
=
1
.
f
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
gui/resources/shaders/overlayShader.vert
0 → 100644
+
21
−
0
View file @
d0d74033
#version 410 core
layout
(
location
=
0
)
in
vec2
pos
;
layout
(
location
=
1
)
in
vec2
texuv
;
uniform
mat4
model
;
uniform
mat4
view
;
uniform
mat4
projection
;
uniform
float
opacity
;
uniform
float
radians
;
uniform
vec2
offset
;
uniform
float
scale
;
out
vec2
tex_coord
;
void
main
(){
vec2
pos_adjusted
=
scale
*
pos
+
offset
;
gl_Position
=
projection
*
view
*
model
*
vec4
(
pos_adjusted
[
0
],
pos_adjusted
[
1
],
0
.
f
,
1
.
f
);
tex_coord
=
texuv
;
}
\ 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