Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
338aeef7
Commit
338aeef7
authored
2 years ago
by
Andrey Kleshchev
Browse files
Options
Downloads
Patches
Plain Diff
SL-14696 SL-13629 Re-add gradation fix after merging a contribution
parent
994d432e
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
doc/contributions.txt
+1
-0
1 addition, 0 deletions
doc/contributions.txt
indra/newview/app_settings/shaders/class1/deferred/skyF.glsl
+7
-0
7 additions, 0 deletions
indra/newview/app_settings/shaders/class1/deferred/skyF.glsl
with
8 additions
and
0 deletions
doc/contributions.txt
+
1
−
0
View file @
338aeef7
...
@@ -1377,6 +1377,7 @@ Sovereign Engineer
...
@@ -1377,6 +1377,7 @@ Sovereign Engineer
OPEN-343
OPEN-343
SL-11625
SL-11625
BUG-229030
BUG-229030
SL-14696
SL-14705
SL-14705
SL-14706
SL-14706
SL-14707
SL-14707
...
...
This diff is collapsed.
Click to expand it.
indra/newview/app_settings/shaders/class1/deferred/skyF.glsl
+
7
−
0
View file @
338aeef7
...
@@ -54,6 +54,13 @@ vec3 rainbow(float d)
...
@@ -54,6 +54,13 @@ vec3 rainbow(float d)
// Unfortunately the texture is inverted, so we need to invert the y coord, but keep the 'interesting'
// Unfortunately the texture is inverted, so we need to invert the y coord, but keep the 'interesting'
// part within the same 0.175..0.250 range, i.e. d = (1 - d) - 1.575
// part within the same 0.175..0.250 range, i.e. d = (1 - d) - 1.575
d
=
clamp
(
-
0
.
575
-
d
,
0
.
0
,
1
.
0
);
d
=
clamp
(
-
0
.
575
-
d
,
0
.
0
,
1
.
0
);
// With the colors in the lower 1/4 of the texture, inverting the coords leaves most of it inaccessible.
// So, we can stretch the texcoord above the colors (ie > 0.25) to fill the entire remaining coordinate
// space. This improves gradation, reduces banding within the rainbow interior. (1-0.25) / (0.425/0.25) = 4.2857
float
interior_coord
=
max
(
0
.
0
,
d
-
0
.
25
)
*
4
.
2857
;
d
=
clamp
(
d
,
0
.
0
,
0
.
25
)
+
interior_coord
;
float
rad
=
(
droplet_radius
-
5
.
0
f
)
/
1024
.
0
f
;
float
rad
=
(
droplet_radius
-
5
.
0
f
)
/
1024
.
0
f
;
return
pow
(
texture2D
(
rainbow_map
,
vec2
(
rad
+
0
.
5
,
d
)).
rgb
,
vec3
(
1
.
8
))
*
moisture_level
;
return
pow
(
texture2D
(
rainbow_map
,
vec2
(
rad
+
0
.
5
,
d
)).
rgb
,
vec3
(
1
.
8
))
*
moisture_level
;
}
}
...
...
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