mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-08 20:28:16 -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);
|
||
|
|
}
|