From 77d882de7de45740e06605055c2d52852860bc35 Mon Sep 17 00:00:00 2001 From: Renaud Rohlinger Date: Mon, 19 Aug 2024 23:09:55 +0900 Subject: [PATCH] WebGPURenderer: Align extensions initialization with WebGLRenderer --- src/renderers/webgl-fallback/WebGLBackend.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/renderers/webgl-fallback/WebGLBackend.js b/src/renderers/webgl-fallback/WebGLBackend.js index a89bb1ebfd4993..5da5b37799bff0 100644 --- a/src/renderers/webgl-fallback/WebGLBackend.js +++ b/src/renderers/webgl-fallback/WebGLBackend.js @@ -53,6 +53,11 @@ class WebGLBackend extends Backend { this.trackTimestamp = ( parameters.trackTimestamp === true ); this.extensions.get( 'EXT_color_buffer_float' ); + this.extensions.get( 'WEBGL_clip_cull_distance' ); + this.extensions.get( 'OES_texture_float_linear' ); + this.extensions.get( 'EXT_color_buffer_half_float' ); + this.extensions.get( 'WEBGL_multisampled_render_to_texture' ); + this.extensions.get( 'WEBGL_render_shared_exponent' ); this.extensions.get( 'WEBGL_multi_draw' ); this.disjoint = this.extensions.get( 'EXT_disjoint_timer_query_webgl2' );