phaser/src/renderer/webgl
2022-11-22 18:13:03 +00:00
..
pipelines The batchLine method in the Multi Pipeline will now check to see if the dxdy len is zero, and if so, it will abort drawing the line. This fixes issues on older Android devices, such as the Samsung Galaxy S6 or Kindle 7, where it would draw erroneous lines leading up to the top-left of the canvas under WebGL when rendering a stroked rounded rectangle. Fix #5429 2022-11-17 16:49:10 +00:00
shaders The Light fragment shader will now use the outTintEffect attribute meaning the Light Pipeline will now correctly light both tinted and fill-tinted Game Objects. Fix #5452 2022-11-17 17:25:47 +00:00
typedefs Create WebGLPipelineBatchEntry.js 2022-10-09 17:49:11 +01:00
const.js Updated copyright year 2022-02-28 14:29:51 +00:00
index.js Updated copyright year 2022-02-28 14:29:51 +00:00
PipelineManager.js Remove calls to resetTextures 2022-10-07 16:09:23 +01:00
RenderTarget.js The RenderTarget class will now create a Framebuffer that includes a Depth Stencil Buffer attachment by default. Previously, it didn't. By attaching a stencil buffer it allows things like Geometry Masks to work in combination with Post FX and other Pipelines. Fix #5802 2022-11-22 18:13:03 +00:00
Utils.js Reverting to forloop shader 2022-11-03 22:04:58 +00:00
WebGLPipeline.js Reset the buffer and textures on rebind. 2022-11-15 21:54:43 +00:00
WebGLRenderer.js The CONTEXT_RESTORED Game Event has been removed and the WebGL Renderer no longer listens for the contextrestored DOM event, or has a contextRestoredHandler method. This never actually worked properly, in any version of Phaser 3 - although the WebGLRenderer would be restored, none of the shaders, pipelines or textures were correctly re-created. If a context is now lost, Phaser will display an error in the console and all rendering will halt. It will no longer try to re-create the context, leading to masses of WebGL errors in the console. Instead, it will die gracefully and require a page reload. 2022-11-17 18:04:51 +00:00
WebGLShader.js Updated copyright year 2022-02-28 14:29:51 +00:00