mirror of
https://github.com/lxsang/Diya-API.git
synced 2024-12-28 12:28:21 +01:00
25 lines
443 B
Smalltalk
25 lines
443 B
Smalltalk
Class {
|
|
#name : #GLSimpleShader,
|
|
#superclass : #OpenGLSL,
|
|
#category : #'Diya-Shaders'
|
|
}
|
|
|
|
{ #category : #accessing }
|
|
GLSimpleShader class >> fragmentShader [
|
|
^ '
|
|
#ifdef GL_ES
|
|
precision mediump float;
|
|
#endif
|
|
uniform vec2 u_resolution;
|
|
uniform vec2 u_mouse;
|
|
uniform float u_time;
|
|
void main()
|
|
{
|
|
vec2 mouse = u_mouse / u_resolution;
|
|
vec2 px = (gl_FragCoord.xy/u_resolution);
|
|
|
|
gl_FragColor = vec4(px/mouse, abs(sin(u_time)), 1.0);
|
|
}
|
|
'
|
|
]
|