-
Notifications
You must be signed in to change notification settings - Fork 0
/
gauss-blur.js
170 lines (125 loc) · 4.34 KB
/
gauss-blur.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
var gl = null;
var mvp,proj,model, mvpLoc,texLoc,tex;
var images =[];
var canvas = null;
function init()
{
var image = new Image();
image.src = "assets/lena_color_512.png";
image.addEventListener('load',function(){
console.log("loaded");
images.push(image);
run();
});
}
function run()
{
canvas = document.createElement('canvas');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
document.body.appendChild(canvas);
gl = canvas.getContext('webgl2', { antialias: false });
var isWebGL2 = !!gl;
if (isWebGL2 === false) {
console.error("WebGL2 context not supported");
return;
}
const vert = [
"#version 300 es",
"precision highp float; ",
"precision highp int;",
"layout(location = 0) in vec3 pos;",
"layout(location = 1) in vec2 uv;",
"uniform mat4 mvp;",
"out vec2 v_uv;",
"void main(){",
"gl_Position = mvp * vec4(pos,1.0);",
"v_uv = uv;",
"}"
].join('\n');
const fragFixedGaussKernel = [
"#version 300 es",
"precision highp float; ",
"precision highp int;",
"uniform sampler2D tex;",
"const float offset[3] = float[](0.0, 1.3846153846, 3.2307692308 );",
"const float weight[3] = float[](0.2270270270, 0.3162162162, 0.0702702703);",
"const float scaleFactor = 1.0;",
"in vec2 v_uv;",
"out vec4 oColor;",
"void main(){",
"vec2 texelSize = 1.0 / vec2(textureSize(tex,0));",
"oColor = texture(tex, v_uv) * weight[0];",
"for (int i=1; i<3; i++) {",
" vec2 texelOffset = vec2(0.0, offset[i] ) * scaleFactor * texelSize;",
" oColor += texture(tex, v_uv + texelOffset ) * weight[i] ;",
" oColor += texture(tex, v_uv - texelOffset ) * weight[i] ;",
"}",
"//oColor = texture(tex, v_uv);",
"}"
].join('\n');
var prog = createProgram(gl, vert, fragFixedGaussKernel);
if (!prog == null) {
console.error("failed to create shader prog");
return;
}
console.log("we are set");
var vao = gl.createVertexArray();
gl.bindVertexArray(vao);
var vertBuff = gl.createBuffer();
gl.bindBuffer(gl.ARRAY_BUFFER,vertBuff);
gl.bufferData(gl.ARRAY_BUFFER,create_plane_vt(),gl.STATIC_DRAW);
const FLOAT_SIZE = Float32Array.BYTES_PER_ELEMENT;
const STRIDE = FLOAT_SIZE * 5;
//vertex attrib
gl.enableVertexAttribArray(0);
gl.vertexAttribPointer(0, 3, gl.FLOAT, false, STRIDE, 0);
gl.enableVertexAttribArray(1);
gl.vertexAttribPointer(1, 2, gl.FLOAT, false, STRIDE, FLOAT_SIZE * 3);
const w = gl.canvas.width;
const h = gl.canvas.height;
//math api ref: http://math.hws.edu/graphicsbook/c7/s1.html#webgl3d.1.2
proj = mat4.perspective( mat4.create(), 55 * 3.14 / 180, w/h, 1, 2000 );
model = mat4.create();
mat4.identity( model );
mvp = mat4.create();
mat4.scale(model,model,[128,128,1]);
mat4.translate(model,model,[0,0,-200]);
gl.useProgram(prog);
mvpLoc = gl.getUniformLocation(prog,"mvp");
texLoc = gl.getUniformLocation(prog,"tex");
var img = images[0];
tex = createGLTexture(gl,gl.RGB,gl.RGB8,img.width,img.height,gl.CLAMP_TO_EDGE,false,false,img);
gl.bindTexture(gl.TEXTURE_2D, tex);
gl.uniform1i(texLoc, 0);
mat4.multiply( mvp, proj, model );
gl.uniformMatrix4fv(mvpLoc, false, mvp );
window.addEventListener('resize', onResize);
requestAnimationFrame(render);
}
function onResize()
{
mat4.identity(proj);
const w = window.innerWidth;
const h = window.innerHeight;
canvas.width = w;
canvas.height = h;
gl.viewport(0,0,w,h);
proj = mat4.perspective(proj, 33 * 3.14 / 180, w/h, 1, 2000 );
mat4.multiply( mvp, proj, model );
gl.uniformMatrix4fv(mvpLoc, false, mvp );
}
function render()
{
gl.clearColor(0,0,0,1);
gl.clear(gl.COLOR_BUFFER_BIT);
// mat4.identity( model );
// mat4.scale(model,model,[100,100,1]);
// mat4.rotate(model,model,0.02,[0,0,1]);
// mat4.translate(model,model,[0,0,-400]);
mat4.multiply( mvp, proj, model );
gl.uniformMatrix4fv(mvpLoc, false, mvp );
gl.drawArrays(gl.TRIANGLE_FAN,0,4);
requestAnimationFrame(render);
}
window.addEventListener('load',init);