Changeset 19745


Ignore:
Timestamp:
11/17/15 17:02:22 (9 years ago)
Author:
dlcheng
Message:

CHG: Removing test101 webgl dependencies

Location:
issm/trunk-jpl/src/m/plot
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/plot/plot_unit.js

    r19741 r19745  
    2020        //}}}
    2121
    22         //load the shaders:
    23         loadShaders(gl);
    24        
    2522        //Initialize the buffer structure:
    2623        node = Node(gl,options);
  • issm/trunk-jpl/src/m/plot/webgl.js

    r19741 r19745  
    11/*This is where we have all our webgl relevant functionality for the plotting routines: */
    2 var shaders = {};
    32//{{{ GL Initialization
    43function initWebGL(canvas,options) { //{{{
     
    2726        gl.enableVertexAttribArray(0);
    2827        gl.enableVertexAttribArray(1);
     28
     29        // Load shaders and store them in gl object
     30        gl.shaders = loadShaders(gl);
    2931
    3032        // Add context state variables
     
    6870
    6971        node= {buffers:[],
    70                 shader:shaders["colored"]["program"],
     72                shader:gl.shaders["colored"]["program"],
    7173                draw:null,
    7274                hideOcean:false,
     
    128130//{{{ Shader Loading
    129131function loadShaders(gl) { //{{{
    130         var shader_name_array = ["colored"];
    131         //var shaders = {};
    132         for (var i = 0; i < shader_name_array.length; i++) {
    133                 loadShader(gl,shader_name_array[i]);
    134         }
    135         //return shaders;
    136 } //}}}
    137 function loadShader(gl,shaderName) { //{{{
    138         //var shader = {loaded:false, vsh:{}, fsh:{}};
     132        // TODO: Subsitute shaders["colored"] with shaderColored
     133        shaderName = "colored";
     134        shaders = {};
    139135        shaders[shaderName] = {loaded:false, vsh:{}, fsh:{}};
    140         $.ajax({
    141                 url: "webgl/shaders/" + shaderName + ".vsh",
    142                 async: false,
    143                 dataType: "script"
    144         });
    145         $.ajax({
    146                 url: "webgl/shaders/" + shaderName + ".fsh",
    147                 async: false,
    148                 dataType: "script"
    149         });
     136        shaders["colored"]["vsh"]["string"] = `
     137                attribute vec3 aVertexPosition;
     138                attribute vec4 aVertexColor;
     139
     140                uniform mat4 uMVPMatrix;
     141                uniform float uAlpha;
     142
     143                varying vec4 vColor;
     144
     145                void main(void) {
     146                        gl_Position = uMVPMatrix * vec4(aVertexPosition.xyz, 1.0);
     147                        vColor = vec4(aVertexColor.xyz, uAlpha);
     148                }
     149        `;
     150        shaders["colored"]["fsh"]["string"] = `
     151                precision mediump float;
     152
     153                varying vec4 vColor;
     154
     155                void main(void) {
     156                        gl_FragColor = vColor;
     157                }
     158        `;
    150159
    151160        shaders[shaderName]["vsh"]["shader"] = getShaderByString(gl, shaders[shaderName]["vsh"]["string"], "vsh");
     
    190199        }
    191200        shaders[shaderName]["loaded"] = true;
    192         //return shader;
     201        return shaders;
    193202} //}}}
    194203function getShaderByString(gl,str,type) { //{{{
     
    213222
    214223        return shader;
    215 } //}}}
    216 function functionToString(functionVariable) { //{{{
    217         //Workaround for loading text files - store as multiline comment in function, then strip string from function once loaded
    218         return functionVariable.toString().replace(/^[^\/]+\/\*!?/, '').replace(/\*\/[^\/]+$/, '');
    219224} //}}}
    220225function nameFromLine(line) { //{{{
Note: See TracChangeset for help on using the changeset viewer.