diff --git a/apps/typegpu-docs/src/examples/simple/mesh-skinning/index.ts b/apps/typegpu-docs/src/examples/simple/mesh-skinning/index.ts index 397903641f..56b4f8b62f 100644 --- a/apps/typegpu-docs/src/examples/simple/mesh-skinning/index.ts +++ b/apps/typegpu-docs/src/examples/simple/mesh-skinning/index.ts @@ -112,7 +112,7 @@ const context = root.configureContext({ canvas }); const presentationFormat = navigator.gpu.getPreferredCanvasFormat(); function createDepthTexture() { - return root['~unstable'] + return root .createTexture({ size: [canvas.width, canvas.height], format: 'depth24plus', @@ -122,7 +122,7 @@ function createDepthTexture() { } function createMsaaTexture() { - return root['~unstable'] + return root .createTexture({ size: [canvas.width, canvas.height], format: presentationFormat,