mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-06-02 18:12:43 +00:00
Renamed shaders
This commit is contained in:
11
resources/shaders/options_120.vs
Normal file
11
resources/shaders/options_120.vs
Normal file
@@ -0,0 +1,11 @@
|
||||
#version 120
|
||||
|
||||
uniform float zoom;
|
||||
uniform float point_size;
|
||||
uniform float near_plane_height;
|
||||
|
||||
void main()
|
||||
{
|
||||
gl_Position = ftransform();
|
||||
gl_PointSize = (gl_Position.w == 1.0) ? zoom * near_plane_height * point_size : near_plane_height * point_size / gl_Position.w;
|
||||
}
|
||||
Reference in New Issue
Block a user