2018-02-13 01:39:22 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2019-01-15 16:20:22 +00:00
|
|
|
* @copyright 2019 Photon Storm Ltd.
|
2019-05-10 15:15:04 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
2018-02-13 01:39:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @namespace Phaser.Renderer.WebGL
|
|
|
|
*/
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
|
|
|
Utils: require('./Utils'),
|
|
|
|
WebGLPipeline: require('./WebGLPipeline'),
|
2018-03-05 14:29:48 +00:00
|
|
|
WebGLRenderer: require('./WebGLRenderer'),
|
|
|
|
Pipelines: require('./pipelines'),
|
|
|
|
|
|
|
|
// Constants
|
|
|
|
BYTE: 0,
|
|
|
|
SHORT: 1,
|
|
|
|
UNSIGNED_BYTE: 2,
|
|
|
|
UNSIGNED_SHORT: 3,
|
|
|
|
FLOAT: 4
|
2018-02-13 01:39:22 +00:00
|
|
|
|
|
|
|
};
|