Sha256: c9d4dccd04098e110352546fb627290bcab39980c40063ea5c60206f0e205376
Contents?: true
Size: 1.17 KB
Versions: 3
Compression:
Stored size: 1.17 KB
Contents
/*global define*/ define(['Core/Enumeration'], function(Enumeration) { "use strict"; /** * DOC_TBA * * @exports TextureWrap */ var TextureWrap = { /** * DOC_TBA * * @type {Enumeration} * @constant * @default 0x812F */ CLAMP_TO_EDGE : new Enumeration(0x812F, 'CLAMP_TO_EDGE'), /** * DOC_TBA * * @type {Enumeration} * @constant * @default 0x2901 */ REPEAT : new Enumeration(0x2901, 'REPEAT'), /** * DOC_TBA * * @type {Enumeration} * @constant * @default 0x8370 */ MIRRORED_REPEAT : new Enumeration(0x8370, 'MIRRORED_REPEAT'), /** * DOC_TBA * * @param {TextureWrap} textureWrap * * @returns {Boolean} */ validate : function(textureWrap) { return ((textureWrap === TextureWrap.CLAMP_TO_EDGE) || (textureWrap === TextureWrap.REPEAT) || (textureWrap === TextureWrap.MIRRORED_REPEAT)); } }; return TextureWrap; });
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cesium-0.22.0 | app/assets/javascripts/Renderer/TextureWrap.js |
cesium-0.21.1 | app/assets/javascripts/Renderer/TextureWrap.js |
cesium-0.21 | app/assets/javascripts/Renderer/TextureWrap.js |