Skip to content

Commit

Permalink
WebGPURenderer: Align extensions initialization with WebGLRenderer (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
RenaudRohlinger authored Aug 19, 2024
1 parent 8884f0f commit bc35f46
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/renderers/webgl-fallback/WebGLBackend.js
Original file line number Diff line number Diff line change
Expand Up @@ -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' );
Expand Down

0 comments on commit bc35f46

Please sign in to comment.