Sha256: 399980ea114f961a9cb120ff7c531a29cbcbb1d7ec10fdf12ec3488fad36db6c

Contents?: true

Size: 626 Bytes

Versions: 3

Compression:

Stored size: 626 Bytes

Contents

/*global define*/
define(function() {
    "use strict";

    /**
     * The render pass for a command.
     * @exports Pass
     *
     * @see DrawCommand#pass
     */
    var Pass = {
        /**
         * The opaque color pass.
         *
         * @type {Number}
         * @constant
         */
        OPAQUE : 0,
        /**
         * The translucent color pass.
         *
         * @type {Number}
         * @constant
         */
        TRANSLUCENT : 1,
        /**
         * The overlay pass.
         *
         * @type {Number}
         * @constant
         */
        OVERLAY : 2
    };

    return Pass;
});

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
cesium-0.25.0 app/assets/javascripts/Renderer/Pass.js
cesium-0.24.1 app/assets/javascripts/Renderer/Pass.js
cesium-0.24.0 app/assets/javascripts/Renderer/Pass.js