2018-03-05 02:24:47 +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-03-05 02:24:47 +00:00
|
|
|
*/
|
|
|
|
|
2018-03-22 13:58:41 +00:00
|
|
|
var Utils = require('../../renderer/webgl/Utils');
|
2018-02-23 03:44:22 +00:00
|
|
|
|
2018-03-05 02:24:47 +00:00
|
|
|
/**
|
2018-07-11 11:35:09 +00:00
|
|
|
* Renders this Game Object with the WebGL Renderer to the given Camera.
|
2018-03-05 02:24:47 +00:00
|
|
|
* 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.
|
|
|
|
*
|
2018-07-11 11:35:09 +00:00
|
|
|
* @method Phaser.GameObjects.RenderTexture#renderWebGL
|
2018-03-05 02:24:47 +00:00
|
|
|
* @since 3.2.0
|
|
|
|
* @private
|
|
|
|
*
|
2018-03-28 14:04:09 +00:00
|
|
|
* @param {Phaser.Renderer.WebGL.WebGLRenderer} renderer - A reference to the current active Canvas renderer.
|
2018-07-11 11:35:09 +00:00
|
|
|
* @param {Phaser.GameObjects.RenderTexture} src - The Game Object being rendered in this call.
|
2018-03-05 02:24:47 +00:00
|
|
|
* @param {number} interpolationPercentage - Reserved for future use and custom pipelines.
|
|
|
|
* @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera that is rendering the Game Object.
|
2018-03-27 17:49:09 +00:00
|
|
|
* @param {Phaser.GameObjects.Components.TransformMatrix} parentMatrix - This transform matrix is defined if the game object is nested
|
2018-03-05 02:24:47 +00:00
|
|
|
*/
|
2018-07-11 11:35:09 +00:00
|
|
|
var RenderTextureWebGLRenderer = function (renderer, src, interpolationPercentage, camera, parentMatrix)
|
2018-02-23 03:44:22 +00:00
|
|
|
{
|
2018-08-03 18:17:39 +00:00
|
|
|
var frame = src.frame;
|
|
|
|
var width = frame.width;
|
|
|
|
var height = frame.height;
|
2018-07-11 11:35:09 +00:00
|
|
|
var getTint = Utils.getTintAppendFloatAlpha;
|
|
|
|
|
2018-02-23 03:44:22 +00:00
|
|
|
this.pipeline.batchTexture(
|
2018-07-11 11:35:09 +00:00
|
|
|
src,
|
2018-08-03 18:17:39 +00:00
|
|
|
frame.glTexture,
|
|
|
|
width, height,
|
2018-07-11 11:35:09 +00:00
|
|
|
src.x, src.y,
|
2018-08-03 18:17:39 +00:00
|
|
|
width, height,
|
2018-07-11 11:35:09 +00:00
|
|
|
src.scaleX, src.scaleY,
|
|
|
|
src.rotation,
|
|
|
|
src.flipX, !src.flipY,
|
|
|
|
src.scrollFactorX, src.scrollFactorY,
|
|
|
|
src.displayOriginX, src.displayOriginY,
|
2018-08-03 18:17:39 +00:00
|
|
|
0, 0, width, height,
|
2018-07-11 11:35:09 +00:00
|
|
|
getTint(src._tintTL, camera.alpha * src._alphaTL),
|
|
|
|
getTint(src._tintTR, camera.alpha * src._alphaTR),
|
|
|
|
getTint(src._tintBL, camera.alpha * src._alphaBL),
|
|
|
|
getTint(src._tintBR, camera.alpha * src._alphaBR),
|
|
|
|
(src._isTinted && src.tintFill),
|
2018-03-05 01:40:11 +00:00
|
|
|
0, 0,
|
2018-04-05 08:02:36 +00:00
|
|
|
camera,
|
2018-03-27 17:49:09 +00:00
|
|
|
parentMatrix
|
2018-02-23 03:44:22 +00:00
|
|
|
);
|
2018-08-01 17:01:54 +00:00
|
|
|
|
|
|
|
// Force clear the current texture so that items next in the batch (like Graphics) don't try and use it
|
|
|
|
renderer.setBlankTexture(true);
|
2018-02-23 03:44:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = RenderTextureWebGLRenderer;
|