UNPKG

openlayers-test

Version:

Build tools and sources for developing OpenLayers based mapping applications

154 lines (120 loc) 5.35 kB
// This file is automatically generated, do not edit goog.provide('ol.render.webgl.imagereplay.shader.Color'); goog.require('ol.webgl.shader'); /** * @constructor * @extends {ol.webgl.shader.Fragment} * @struct */ ol.render.webgl.imagereplay.shader.ColorFragment = function() { goog.base(this, ol.render.webgl.imagereplay.shader.ColorFragment.SOURCE); }; goog.inherits(ol.render.webgl.imagereplay.shader.ColorFragment, ol.webgl.shader.Fragment); goog.addSingletonGetter(ol.render.webgl.imagereplay.shader.ColorFragment); /** * @const * @type {string} */ ol.render.webgl.imagereplay.shader.ColorFragment.DEBUG_SOURCE = 'precision mediump float;\nvarying vec2 v_texCoord;\nvarying float v_opacity;\n\n// @see https://svn.webkit.org/repository/webkit/trunk/Source/WebCore/platform/graphics/filters/skia/SkiaImageFilterBuilder.cpp\nuniform mat4 u_colorMatrix;\nuniform float u_opacity;\nuniform sampler2D u_image;\n\nvoid main(void) {\n vec4 texColor = texture2D(u_image, v_texCoord);\n float alpha = texColor.a * v_opacity * u_opacity;\n if (alpha == 0.0) {\n discard;\n }\n gl_FragColor.a = alpha;\n gl_FragColor.rgb = (u_colorMatrix * vec4(texColor.rgb, 1.)).rgb;\n}\n'; /** * @const * @type {string} */ ol.render.webgl.imagereplay.shader.ColorFragment.OPTIMIZED_SOURCE = 'precision mediump float;varying vec2 a;varying float b;uniform mat4 k;uniform float l;uniform sampler2D m;void main(void){vec4 texColor=texture2D(m,a);float alpha=texColor.a*b*l;if(alpha==0.0){discard;}gl_FragColor.a=alpha;gl_FragColor.rgb=(k*vec4(texColor.rgb,1.)).rgb;}'; /** * @const * @type {string} */ ol.render.webgl.imagereplay.shader.ColorFragment.SOURCE = goog.DEBUG ? ol.render.webgl.imagereplay.shader.ColorFragment.DEBUG_SOURCE : ol.render.webgl.imagereplay.shader.ColorFragment.OPTIMIZED_SOURCE; /** * @constructor * @extends {ol.webgl.shader.Vertex} * @struct */ ol.render.webgl.imagereplay.shader.ColorVertex = function() { goog.base(this, ol.render.webgl.imagereplay.shader.ColorVertex.SOURCE); }; goog.inherits(ol.render.webgl.imagereplay.shader.ColorVertex, ol.webgl.shader.Vertex); goog.addSingletonGetter(ol.render.webgl.imagereplay.shader.ColorVertex); /** * @const * @type {string} */ ol.render.webgl.imagereplay.shader.ColorVertex.DEBUG_SOURCE = 'varying vec2 v_texCoord;\nvarying float v_opacity;\n\nattribute vec2 a_position;\nattribute vec2 a_texCoord;\nattribute vec2 a_offsets;\nattribute float a_opacity;\nattribute float a_rotateWithView;\n\nuniform mat4 u_projectionMatrix;\nuniform mat4 u_offsetScaleMatrix;\nuniform mat4 u_offsetRotateMatrix;\n\nvoid main(void) {\n mat4 offsetMatrix = u_offsetScaleMatrix;\n if (a_rotateWithView == 1.0) {\n offsetMatrix = u_offsetScaleMatrix * u_offsetRotateMatrix;\n }\n vec4 offsets = offsetMatrix * vec4(a_offsets, 0., 0.);\n gl_Position = u_projectionMatrix * vec4(a_position, 0., 1.) + offsets;\n v_texCoord = a_texCoord;\n v_opacity = a_opacity;\n}\n\n\n'; /** * @const * @type {string} */ ol.render.webgl.imagereplay.shader.ColorVertex.OPTIMIZED_SOURCE = 'varying vec2 a;varying float b;attribute vec2 c;attribute vec2 d;attribute vec2 e;attribute float f;attribute float g;uniform mat4 h;uniform mat4 i;uniform mat4 j;void main(void){mat4 offsetMatrix=i;if(g==1.0){offsetMatrix=i*j;}vec4 offsets=offsetMatrix*vec4(e,0.,0.);gl_Position=h*vec4(c,0.,1.)+offsets;a=d;b=f;}'; /** * @const * @type {string} */ ol.render.webgl.imagereplay.shader.ColorVertex.SOURCE = goog.DEBUG ? ol.render.webgl.imagereplay.shader.ColorVertex.DEBUG_SOURCE : ol.render.webgl.imagereplay.shader.ColorVertex.OPTIMIZED_SOURCE; /** * @constructor * @param {WebGLRenderingContext} gl GL. * @param {WebGLProgram} program Program. * @struct */ ol.render.webgl.imagereplay.shader.Color.Locations = function(gl, program) { /** * @type {WebGLUniformLocation} */ this.u_colorMatrix = gl.getUniformLocation( program, goog.DEBUG ? 'u_colorMatrix' : 'k'); /** * @type {WebGLUniformLocation} */ this.u_image = gl.getUniformLocation( program, goog.DEBUG ? 'u_image' : 'm'); /** * @type {WebGLUniformLocation} */ this.u_offsetRotateMatrix = gl.getUniformLocation( program, goog.DEBUG ? 'u_offsetRotateMatrix' : 'j'); /** * @type {WebGLUniformLocation} */ this.u_offsetScaleMatrix = gl.getUniformLocation( program, goog.DEBUG ? 'u_offsetScaleMatrix' : 'i'); /** * @type {WebGLUniformLocation} */ this.u_opacity = gl.getUniformLocation( program, goog.DEBUG ? 'u_opacity' : 'l'); /** * @type {WebGLUniformLocation} */ this.u_projectionMatrix = gl.getUniformLocation( program, goog.DEBUG ? 'u_projectionMatrix' : 'h'); /** * @type {number} */ this.a_offsets = gl.getAttribLocation( program, goog.DEBUG ? 'a_offsets' : 'e'); /** * @type {number} */ this.a_opacity = gl.getAttribLocation( program, goog.DEBUG ? 'a_opacity' : 'f'); /** * @type {number} */ this.a_position = gl.getAttribLocation( program, goog.DEBUG ? 'a_position' : 'c'); /** * @type {number} */ this.a_rotateWithView = gl.getAttribLocation( program, goog.DEBUG ? 'a_rotateWithView' : 'g'); /** * @type {number} */ this.a_texCoord = gl.getAttribLocation( program, goog.DEBUG ? 'a_texCoord' : 'd'); };