mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
12 lines
358 B
GLSL
12 lines
358 B
GLSL
|
|
uniform sampler2D u_texture2D;
|
|
|
|
varying vec2 v_texCoord;
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Texture 2D source fragment
|
|
//--------------------------------------------------------------------------------------------------
|
|
vec4 srcFragment()
|
|
{
|
|
return texture2D(u_texture2D, v_texCoord);
|
|
} |