UNPKG

cesium

Version:

CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.

26 lines (22 loc) 690 B
define([ '../Core/freezeObject', '../Core/WebGLConstants' ], function( freezeObject, WebGLConstants) { 'use strict'; /** * @private */ var TextureWrap = { CLAMP_TO_EDGE : WebGLConstants.CLAMP_TO_EDGE, REPEAT : WebGLConstants.REPEAT, MIRRORED_REPEAT : WebGLConstants.MIRRORED_REPEAT, validate : function(textureWrap) { return ((textureWrap === TextureWrap.CLAMP_TO_EDGE) || (textureWrap === TextureWrap.REPEAT) || (textureWrap === TextureWrap.MIRRORED_REPEAT)); } }; return freezeObject(TextureWrap); });