From 2f69312108fc0b9b5542625def487d0ee6a4917c Mon Sep 17 00:00:00 2001 From: Kenneth Russell Date: Wed, 11 Mar 2026 15:24:17 -0700 Subject: [PATCH] Fix Rive's Bubbles demo for recent PLS API change. framebufferTexturePixelLocalStorageWEBGL now takes 5 arguments. Follow-on to #3765. --- sdk/demos/rive/bubbles.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/demos/rive/bubbles.html b/sdk/demos/rive/bubbles.html index 0c6507f8d..5ca75fc93 100644 --- a/sdk/demos/rive/bubbles.html +++ b/sdk/demos/rive/bubbles.html @@ -357,7 +357,7 @@ gl.framebufferTexture2D(gl.FRAMEBUFFER, gl.COLOR_ATTACHMENT0, gl.TEXTURE_2D, tex, 0); gl.bindFramebuffer(gl.FRAMEBUFFER, renderFBO); - pls.framebufferTexturePixelLocalStorageWEBGL(0, tex, 0, 0); + pls.framebufferTexturePixelLocalStorageWEBGL(0, tex, 0, 0, 0); lastWidth = w; lastHeight = h;