123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- /*global define*/
- define([
- '../Core/defined',
- '../Core/defineProperties',
- '../Core/DeveloperError',
- '../Core/FeatureDetection',
- '../Core/Cartesian2',
- '../Core/Cartesian3',
- '../Core/Cartesian4',
- '../Core/Color',
- '../Core/Matrix2',
- '../Core/Matrix3',
- '../Core/Matrix4',
- '../Core/RuntimeError'
- ], function(
- defined,
- defineProperties,
- DeveloperError,
- FeatureDetection,
- Cartesian2,
- Cartesian3,
- Cartesian4,
- Color,
- Matrix2,
- Matrix3,
- Matrix4,
- RuntimeError) {
- "use strict";
- /*global console*/
- var scratchUniformMatrix2;
- var scratchUniformMatrix3;
- var scratchUniformMatrix4;
- if (FeatureDetection.supportsTypedArrays()) {
- scratchUniformMatrix2 = new Float32Array(4);
- scratchUniformMatrix3 = new Float32Array(9);
- scratchUniformMatrix4 = new Float32Array(16);
- }
- /**
- * @private
- */
- var Uniform = function(gl, activeUniform, uniformName, location) {
- this.value = undefined;
- this._value = undefined;
- this._gl = gl;
- this._activeUniform = activeUniform;
- this._uniformName = uniformName;
- this._location = location;
- /**
- * @private
- */
- this.textureUnitIndex = undefined;
- var set;
- switch (activeUniform.type) {
- case gl.FLOAT:
- set = this.setFloat;
- break;
- case gl.FLOAT_VEC2:
- set = this.setFloatVec2;
- break;
- case gl.FLOAT_VEC3:
- set = this.setFloatVec3;
- break;
- case gl.FLOAT_VEC4:
- set = this.setFloatVec4;
- break;
- case gl.SAMPLER_2D:
- case gl.SAMPLER_CUBE:
- set = this.setSampler;
- break;
- case gl.INT:
- case gl.BOOL:
- set = this.setInt;
- break;
- case gl.INT_VEC2:
- case gl.BOOL_VEC2:
- set = this.setIntVec2;
- break;
- case gl.INT_VEC3:
- case gl.BOOL_VEC3:
- set = this.setIntVec3;
- break;
- case gl.INT_VEC4:
- case gl.BOOL_VEC4:
- set = this.setIntVec4;
- break;
- case gl.FLOAT_MAT2:
- set = this.setMat2;
- break;
- case gl.FLOAT_MAT3:
- set = this.setMat3;
- break;
- case gl.FLOAT_MAT4:
- set = this.setMat4;
- break;
- default:
- throw new RuntimeError('Unrecognized uniform type: ' + activeUniform.type + ' for uniform "' + uniformName + '".');
- }
- this._set = set;
- if ((activeUniform.type === gl.SAMPLER_2D) || (activeUniform.type === gl.SAMPLER_CUBE)) {
- this._setSampler = function(textureUnitIndex) {
- this.textureUnitIndex = textureUnitIndex;
- gl.uniform1i(location, textureUnitIndex);
- return textureUnitIndex + 1;
- };
- }
- };
- defineProperties(Uniform.prototype, {
- name : {
- get : function() {
- return this._uniformName;
- }
- },
- datatype : {
- get : function() {
- return this._activeUniform.type;
- }
- }
- });
- Uniform.prototype.setFloat = function() {
- if (this.value !== this._value) {
- this._value = this.value;
- this._gl.uniform1f(this._location, this.value);
- }
- };
- Uniform.prototype.setFloatVec2 = function() {
- var v = this.value;
- if (!Cartesian2.equals(v, this._value)) {
- this._value = Cartesian2.clone(v, this._value);
- this._gl.uniform2f(this._location, v.x, v.y);
- }
- };
- Uniform.prototype.setFloatVec3 = function() {
- var v = this.value;
- if (defined(v.red)) {
- if (!Color.equals(v, this._value)) {
- this._value = Color.clone(v, this._value);
- this._gl.uniform3f(this._location, v.red, v.green, v.blue);
- }
- } else if (defined(v.x)) {
- if (!Cartesian3.equals(v, this._value)) {
- this._value = Cartesian3.clone(v, this._value);
- this._gl.uniform3f(this._location, v.x, v.y, v.z);
- }
- } else {
- throw new DeveloperError('Invalid vec3 value for uniform "' + this._activethis.name + '".');
- }
- };
- Uniform.prototype.setFloatVec4 = function() {
- var v = this.value;
- if (defined(v.red)) {
- if (!Color.equals(v, this._value)) {
- this._value = Color.clone(v, this._value);
- this._gl.uniform4f(this._location, v.red, v.green, v.blue, v.alpha);
- }
- } else if (defined(v.x)) {
- if (!Cartesian4.equals(v, this._value)) {
- this._value = Cartesian4.clone(v, this._value);
- this._gl.uniform4f(this._location, v.x, v.y, v.z, v.w);
- }
- } else {
- throw new DeveloperError('Invalid vec4 value for uniform "' + this._activethis.name + '".');
- }
- };
- Uniform.prototype.setSampler = function() {
- var gl = this._gl;
- gl.activeTexture(gl.TEXTURE0 + this.textureUnitIndex);
- gl.bindTexture(this.value._target, this.value._texture);
- };
- Uniform.prototype.setInt = function() {
- if (this.value !== this._value) {
- this._value = this.value;
- this._gl.uniform1i(this._location, this.value);
- }
- };
- Uniform.prototype.setIntVec2 = function() {
- var v = this.value;
- if (!Cartesian2.equals(v, this._value)) {
- this._value = Cartesian2.clone(v, this._value);
- this._gl.uniform2i(this._location, v.x, v.y);
- }
- };
- Uniform.prototype.setIntVec3 = function() {
- var v = this.value;
- if (!Cartesian3.equals(v, this._value)) {
- this._value = Cartesian3.clone(v, this._value);
- this._gl.uniform3i(this._location, v.x, v.y, v.z);
- }
- };
- Uniform.prototype.setIntVec4 = function() {
- var v = this.value;
- if (!Cartesian4.equals(v, this._value)) {
- this._value = Cartesian4.clone(v, this._value);
- this._gl.uniform4i(this._location, v.x, v.y, v.z, v.w);
- }
- };
- Uniform.prototype.setMat2 = function() {
- var v = this.value;
- if (!Matrix2.equals(v, this._value)) {
- this._value = Matrix2.clone(v, this._value);
- this._gl.uniformMatrix2fv(this._location, false, Matrix2.toArray(this.value, scratchUniformMatrix2));
- }
- };
- Uniform.prototype.setMat3 = function() {
- var v = this.value;
- if (!Matrix3.equals(v, this._value)) {
- this._value = Matrix3.clone(v, this._value);
- this._gl.uniformMatrix3fv(this._location, false, Matrix3.toArray(this.value, scratchUniformMatrix3));
- }
- };
- Uniform.prototype.setMat4 = function() {
- var v = this.value;
- if (!Matrix4.equals(v, this._value)) {
- this._value = Matrix4.clone(v, this._value);
- this._gl.uniformMatrix4fv(this._location, false, Matrix4.toArray(this.value, scratchUniformMatrix4));
- }
- };
- return Uniform;
- });
|