phaser/src/gameobjects/text/static/TextWebGLRenderer.js

40 lines
1.5 KiB
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
var GameObject = require('../../GameObject');
2018-02-07 00:18:22 +00:00
/**
* 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.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.
*/
var TextWebGLRenderer = function (renderer, src, interpolationPercentage, camera)
{
2018-02-07 00:18:22 +00:00
if (GameObject.RENDER_MASK !== src.renderFlags || (src.cameraFilter > 0 && (src.cameraFilter & camera._id)) || src.text === '')
{
return;
}
2018-02-07 00:18:22 +00:00
if (src.dirty)
{
2018-02-07 00:18:22 +00:00
src.canvasTexture = renderer.canvasToTexture(src.canvas, src.canvasTexture, true, src.scaleMode);
src.dirty = false;
}
2018-01-24 00:40:20 +00:00
2018-01-30 03:38:31 +00:00
this.pipeline.batchText(this, camera);
};
module.exports = TextWebGLRenderer;