Skip to content

Commit 6de8aba

Browse files
authored
WebGPURenderPipelines: Fix typo. (#21751)
1 parent 2b3af95 commit 6de8aba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/jsm/renderers/webgpu/WebGPURenderPipelines.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,14 +184,14 @@ class WebGPURenderPipelines {
184184
pipelines[ i ] = pipelines[ pipelines.length - 1 ];
185185
pipelines.pop();
186186

187-
this._relaseStage( pipeline.stageVertex );
188-
this._relaseStage( pipeline.stageFragment );
187+
this._releaseStage( pipeline.stageVertex );
188+
this._releaseStage( pipeline.stageFragment );
189189

190190
}
191191

192192
}
193193

194-
_relaseStage( stage ) {
194+
_releaseStage( stage ) {
195195

196196
if ( -- stage.usedTimes === 0 ) {
197197

0 commit comments

Comments
 (0)