7 lines
123 B
GLSL
7 lines
123 B
GLSL
|
uniform sampler3D m_Texture;
|
||
|
|
||
|
varying vec3 texCoord;
|
||
|
|
||
|
void main(){
|
||
|
gl_FragColor= texture3D(m_Texture,texCoord);
|
||
|
}
|