Sha256: cc507f7cc32e916959daddb3971ea097dbb7cd266167ff28b52a975e83c9116a
Contents?: true
Size: 767 Bytes
Versions: 4
Compression:
Stored size: 767 Bytes
Contents
//This file is automatically rebuilt by the Cesium build process. /*global define*/ define(function() { "use strict"; return "attribute vec3 position3DHigh;\n\ attribute vec3 position3DLow;\n\ attribute vec3 normal;\n\ attribute vec3 tangent;\n\ attribute vec3 binormal;\n\ attribute vec2 st;\n\ varying vec3 v_positionEC;\n\ varying vec3 v_normalEC;\n\ varying vec3 v_tangentEC;\n\ varying vec3 v_binormalEC;\n\ varying vec2 v_st;\n\ void main()\n\ {\n\ vec4 p = czm_computePosition();\n\ v_positionEC = (czm_modelViewRelativeToEye * p).xyz;\n\ v_normalEC = czm_normal * normal;\n\ v_tangentEC = czm_normal * tangent;\n\ v_binormalEC = czm_normal * binormal;\n\ v_st = st;\n\ gl_Position = czm_modelViewProjectionRelativeToEye * p;\n\ }\n\ "; });
Version data entries
4 entries across 4 versions & 1 rubygems