mirror of
https://github.com/photonstorm/phaser
synced 2024-12-25 20:43:26 +00:00
25 lines
538 B
JavaScript
25 lines
538 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Renderer.WebGL
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
Utils: require('./Utils'),
|
|
WebGLPipeline: require('./WebGLPipeline'),
|
|
WebGLRenderer: require('./WebGLRenderer'),
|
|
Pipelines: require('./pipelines'),
|
|
|
|
// Constants
|
|
BYTE: 0,
|
|
SHORT: 1,
|
|
UNSIGNED_BYTE: 2,
|
|
UNSIGNED_SHORT: 3,
|
|
FLOAT: 4
|
|
|
|
};
|