mirror of
https://github.com/OPM/ResInsight.git
synced 2026-07-31 08:48:17 -05:00
10 lines
341 B
GLSL
10 lines
341 B
GLSL
|
|
uniform sampler2D u_texture2D;
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Texture 2D source fragment
|
|
//--------------------------------------------------------------------------------------------------
|
|
vec4 srcFragment()
|
|
{
|
|
return texture2D(u_texture2D, gl_PointCoord.xy);
|
|
} |