mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-11-02 04:31:17 -07:00
GCodeViewer -> New shaders for options
This commit is contained in:
parent
80c2f107c1
commit
4d05ec0856
18 changed files with 132 additions and 408 deletions
15
resources/shaders/options_120.fs
Normal file
15
resources/shaders/options_120.fs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#version 120
|
||||
|
||||
uniform vec3 uniform_color;
|
||||
|
||||
void main()
|
||||
{
|
||||
vec2 pos = gl_PointCoord - vec2(0.5, 0.5);
|
||||
float sq_radius = pos.x * pos.x + pos.y * pos.y;
|
||||
if (sq_radius > 0.25)
|
||||
discard;
|
||||
else if (sq_radius > 0.180625)
|
||||
gl_FragColor = vec4(0.5 * uniform_color, 1.0);
|
||||
else
|
||||
gl_FragColor = vec4(uniform_color, 1.0);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue