phaser3-rex-plugins
Version:
68 lines (59 loc) • 2.52 kB
JavaScript
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2019 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
var Utils = Phaser.Renderer.WebGL.Utils;
/**
* Renders this Game Object with the WebGL Renderer to the given Camera.
* The object will not render if any of its renderFlags are set or it is being actively filtered out by the Camera.
* This method should not be called directly. It is a utility function of the Render module.
*
* @method Phaser.GameObjects.Text#renderWebGL
* @since 3.0.0
* @private
*
* @param {Phaser.Renderer.WebGL.WebGLRenderer} renderer - A reference to the current active WebGL renderer.
* @param {Phaser.GameObjects.Text} src - The Game Object being rendered in this call.
* @param {number} interpolationPercentage - Reserved for future use and custom pipelines.
* @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera that is rendering the Game Object.
* @param {Phaser.GameObjects.Components.TransformMatrix} parentMatrix - This transform matrix is defined if the game object is nested
*/
var WebGLRenderer = function (renderer, src, camera, parentMatrix) {
if ((src.width === 0) || (src.height === 0)) {
return;
}
camera.addToRenderList(src);
var frame = src.frame;
var width = frame.width;
var height = frame.height;
var getTint = Utils.getTintAppendFloatAlpha;
var pipeline = renderer.pipelines.set(src.pipeline, src);
var textureUnit = pipeline.setTexture2D(frame.glTexture, src);
renderer.pipelines.preBatch(src);
pipeline.batchTexture(
src,
frame.glTexture,
width, height,
src.x, src.y,
width / src.style.resolution, height / src.style.resolution,
src.scaleX, src.scaleY,
src.rotation,
src.flipX, src.flipY,
src.scrollFactorX, src.scrollFactorY,
src.displayOriginX, src.displayOriginY,
0, 0, width, height,
getTint(src.tintTopLeft, camera.alpha * src._alphaTL),
getTint(src.tintTopRight, camera.alpha * src._alphaTR),
getTint(src.tintBottomLeft, camera.alpha * src._alphaBL),
getTint(src.tintBottomRight, camera.alpha * src._alphaBR),
src.tintFill,
0, 0,
camera,
parentMatrix,
false,
textureUnit
);
renderer.pipelines.postBatch(src);
};
export default WebGLRenderer;