mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
12 lines
309 B
GLSL
12 lines
309 B
GLSL
|
|
uniform vec4 u_color;
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Initial draw pass for highlighting
|
|
//--------------------------------------------------------------------------------------------------
|
|
void main()
|
|
{
|
|
gl_FragData[0] = u_color;
|
|
}
|
|
|