mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
17 lines
393 B
GLSL
17 lines
393 B
GLSL
|
|
vec4 srcFragment();
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Fragment Shader - Unlit
|
|
//--------------------------------------------------------------------------------------------------
|
|
void main()
|
|
{
|
|
#ifdef CVF_CHECK_DISCARD_FRAGMENT_IMPL
|
|
checkDiscardFragment();
|
|
#endif
|
|
|
|
vec4 color = srcFragment();
|
|
|
|
gl_FragColor = color;
|
|
}
|