phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.
20 lines (18 loc) • 691 B
JavaScript
/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* The WebGLPipeline Before Flush Event.
*
* This event is dispatched by a WebGLPipeline right before it is about to
* flush and issue a bufferData and drawArrays command.
*
* @event Phaser.Renderer.WebGL.Pipelines.Events#BEFORE_FLUSH
* @since 3.50.0
*
* @param {Phaser.Renderer.WebGL.WebGLPipeline} pipeline - The pipeline that is about to flush.
* @param {boolean} isPostFlush - Was this flush invoked as part of a post-process, or not?
*/
module.exports = 'pipelinebeforeflush';