mirror of
https://git.mirrors.martin98.com/https://github.com/bambulab/BambuStudio.git
synced 2025-08-20 09:49:10 +08:00
Jira:STUDIO-4227
thanks for PrusaSlcer and enricoturri1966
commit 76d1d4949bbd0964717f8112aae992a1267c5eb4
Author: enricoturri1966 <enricoturri@seznam.cz>
Date: Mon Mar 21 13:10:47 2022 +0100
Tech ENABLE_GL_SHADERS_ATTRIBUTES - Added shaders for glsl version 140
...
Change-Id: I4db00805830f07a5eaa95cfc7b8254c61b86f0c8
9 lines
93 B
GLSL
9 lines
93 B
GLSL
#version 110
|
|
|
|
uniform vec4 uniform_color;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = uniform_color;
|
|
}
|