-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathwebgpu-graphics-device.js
1086 lines (861 loc) · 36.5 KB
/
webgpu-graphics-device.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { TRACEID_RENDER_QUEUE } from '../../../core/constants.js';
import { Debug, DebugHelper } from '../../../core/debug.js';
import {
PIXELFORMAT_RGBA8, PIXELFORMAT_BGRA8, DEVICETYPE_WEBGPU,
BUFFERUSAGE_READ, BUFFERUSAGE_COPY_DST, semanticToLocation
} from '../constants.js';
import { GraphicsDevice } from '../graphics-device.js';
import { DebugGraphics } from '../debug-graphics.js';
import { RenderTarget } from '../render-target.js';
import { StencilParameters } from '../stencil-parameters.js';
import { WebgpuBindGroup } from './webgpu-bind-group.js';
import { WebgpuBindGroupFormat } from './webgpu-bind-group-format.js';
import { WebgpuIndexBuffer } from './webgpu-index-buffer.js';
import { WebgpuRenderPipeline } from './webgpu-render-pipeline.js';
import { WebgpuComputePipeline } from './webgpu-compute-pipeline.js';
import { WebgpuRenderTarget } from './webgpu-render-target.js';
import { WebgpuShader } from './webgpu-shader.js';
import { WebgpuTexture } from './webgpu-texture.js';
import { WebgpuUniformBuffer } from './webgpu-uniform-buffer.js';
import { WebgpuVertexBuffer } from './webgpu-vertex-buffer.js';
import { WebgpuClearRenderer } from './webgpu-clear-renderer.js';
import { WebgpuMipmapRenderer } from './webgpu-mipmap-renderer.js';
import { WebgpuDebug } from './webgpu-debug.js';
import { WebgpuDynamicBuffers } from './webgpu-dynamic-buffers.js';
import { WebgpuGpuProfiler } from './webgpu-gpu-profiler.js';
import { WebgpuResolver } from './webgpu-resolver.js';
import { WebgpuCompute } from './webgpu-compute.js';
import { WebgpuBuffer } from './webgpu-buffer.js';
import { BindGroupFormat } from '../bind-group-format.js';
import { BindGroup } from '../bind-group.js';
const _uniqueLocations = new Map();
class WebgpuGraphicsDevice extends GraphicsDevice {
/**
* Object responsible for caching and creation of render pipelines.
*/
renderPipeline = new WebgpuRenderPipeline(this);
/**
* Object responsible for caching and creation of compute pipelines.
*/
computePipeline = new WebgpuComputePipeline(this);
/**
* Object responsible for clearing the rendering surface by rendering a quad.
*
* @type { WebgpuClearRenderer }
*/
clearRenderer;
/**
* Object responsible for mipmap generation.
*
* @type { WebgpuMipmapRenderer }
*/
mipmapRenderer;
/**
* Render pipeline currently set on the device.
*
* @type {GPURenderPipeline}
* @private
*/
pipeline;
/**
* An array of bind group formats, based on currently assigned bind groups
*
* @type {WebgpuBindGroupFormat[]}
*/
bindGroupFormats = [];
/**
* An empty bind group, used when the draw call is using a typical bind group layout based on
* BINDGROUP_*** constants but some bind groups are not needed, for example clear renderer.
*
* @type {BindGroup}
*/
emptyBindGroup;
/**
* Current command buffer encoder.
*
* @type {GPUCommandEncoder|null}
* @private
*/
commandEncoder = null;
/**
* Command buffers scheduled for execution on the GPU.
*
* @type {GPUCommandBuffer[]}
* @private
*/
commandBuffers = [];
/**
* @type {GPUSupportedLimits}
* @private
*/
limits;
constructor(canvas, options = {}) {
super(canvas, options);
options = this.initOptions;
// alpha defaults to true
options.alpha = options.alpha ?? true;
this.backBufferAntialias = options.antialias ?? false;
this.isWebGPU = true;
this._deviceType = DEVICETYPE_WEBGPU;
}
/**
* Destroy the graphics device.
*/
destroy() {
this.clearRenderer.destroy();
this.clearRenderer = null;
this.mipmapRenderer.destroy();
this.mipmapRenderer = null;
this.resolver.destroy();
this.resolver = null;
super.destroy();
}
initDeviceCaps() {
const limits = this.wgpu?.limits;
this.limits = limits;
this.precision = 'highp';
this.maxPrecision = 'highp';
this.maxSamples = 4;
this.maxTextures = 16;
this.maxTextureSize = limits.maxTextureDimension2D;
this.maxCubeMapSize = limits.maxTextureDimension2D;
this.maxVolumeSize = limits.maxTextureDimension3D;
this.maxColorAttachments = limits.maxColorAttachments;
this.maxPixelRatio = 1;
this.maxAnisotropy = 16;
this.fragmentUniformsCount = limits.maxUniformBufferBindingSize / 16;
this.vertexUniformsCount = limits.maxUniformBufferBindingSize / 16;
this.supportsUniformBuffers = true;
this.supportsMorphTargetTexturesCore = true;
this.supportsAreaLights = true;
this.supportsGpuParticles = true;
this.supportsCompute = true;
this.textureFloatRenderable = true;
this.textureHalfFloatRenderable = true;
this.supportsImageBitmap = true;
// WebGPU currently only supports 1 and 4 samples
this.samples = this.backBufferAntialias ? 4 : 1;
// WGSL features
const wgslFeatures = navigator.gpu.wgslLanguageFeatures;
this.supportsStorageTextureRead = wgslFeatures?.has('readonly_and_readwrite_storage_textures');
}
async initWebGpu(glslangUrl, twgslUrl) {
if (!window.navigator.gpu) {
throw new Error('Unable to retrieve GPU. Ensure you are using a browser that supports WebGPU rendering.');
}
// temporary message to confirm Webgpu is being used
Debug.log("WebgpuGraphicsDevice initialization ..");
// build a full URL from a relative or absolute path
const buildUrl = (srcPath) => {
return new URL(srcPath, window.location.href).toString();
};
const results = await Promise.all([
import(`${buildUrl(twgslUrl)}`).then(module => twgsl(twgslUrl.replace('.js', '.wasm'))),
import(`${buildUrl(glslangUrl)}`).then(module => module.default())
]);
this.twgsl = results[0];
this.glslang = results[1];
/** @type {GPURequestAdapterOptions} */
const adapterOptions = {
powerPreference: this.initOptions.powerPreference !== 'default' ? this.initOptions.powerPreference : undefined
};
/**
* @type {GPUAdapter}
* @private
*/
this.gpuAdapter = await window.navigator.gpu.requestAdapter(adapterOptions);
// request optional features
const requiredFeatures = [];
const requireFeature = (feature) => {
const supported = this.gpuAdapter.features.has(feature);
if (supported) {
requiredFeatures.push(feature);
}
return supported;
};
this.textureFloatFilterable = requireFeature('float32-filterable');
this.extCompressedTextureS3TC = requireFeature('texture-compression-bc');
this.extCompressedTextureETC = requireFeature('texture-compression-etc2');
this.extCompressedTextureASTC = requireFeature('texture-compression-astc');
this.supportsTimestampQuery = requireFeature('timestamp-query');
this.supportsDepthClip = requireFeature('depth-clip-control');
this.supportsDepth32Stencil = requireFeature('depth32float-stencil8');
this.supportsIndirectFirstInstance = requireFeature('indirect-first-instance');
this.supportsShaderF16 = requireFeature('shader-f16');
this.supportsStorageRGBA8 = requireFeature('bgra8unorm-storage');
this.textureRG11B10Renderable = requireFeature('rg11b10ufloat-renderable');
Debug.log(`WEBGPU features: ${requiredFeatures.join(', ')}`);
// copy all adapter limits to the requiredLimits object - to created a device with the best feature sets available
const adapterLimits = this.gpuAdapter?.limits;
const requiredLimits = {};
if (adapterLimits) {
for (const limitName in adapterLimits) {
// skip these as they fail on Windows Chrome and are not part of spec currently
if (limitName === "minSubgroupSize" || limitName === "maxSubgroupSize") {
continue;
}
requiredLimits[limitName] = adapterLimits[limitName];
}
}
/** @type {GPUDeviceDescriptor} */
const deviceDescr = {
requiredFeatures,
requiredLimits,
defaultQueue: {
label: 'Default Queue'
}
};
DebugHelper.setLabel(deviceDescr, 'PlayCanvasWebGPUDevice');
/**
* @type {GPUDevice}
* @private
*/
this.wgpu = await this.gpuAdapter.requestDevice(deviceDescr);
this.wgpu.lost?.then((info) => {
// reason is 'destroyed' if we intentionally destroy the device
if (info.reason !== 'destroyed') {
Debug.warn(`WebGPU device was lost: ${info.message}, this needs to be handled`);
}
});
this.initDeviceCaps();
this.gpuContext = this.canvas.getContext('webgpu');
// pixel format of the framebuffer is the most efficient one on the system
const preferredCanvasFormat = navigator.gpu.getPreferredCanvasFormat();
this.backBufferFormat = preferredCanvasFormat === 'rgba8unorm' ? PIXELFORMAT_RGBA8 : PIXELFORMAT_BGRA8;
/**
* Configuration of the main colorframebuffer we obtain using getCurrentTexture
*
* @type {GPUCanvasConfiguration}
* @private
*/
this.canvasConfig = {
device: this.wgpu,
colorSpace: 'srgb',
alphaMode: this.initOptions.alpha ? 'premultiplied' : 'opaque',
// use preferred format for optimal performance on mobile
format: preferredCanvasFormat,
// RENDER_ATTACHMENT is required, COPY_SRC allows scene grab to copy out from it
usage: GPUTextureUsage.RENDER_ATTACHMENT | GPUTextureUsage.COPY_SRC | GPUTextureUsage.COPY_DST,
// formats that views created from textures returned by getCurrentTexture may use
viewFormats: []
};
this.gpuContext.configure(this.canvasConfig);
this.createBackbuffer();
this.clearRenderer = new WebgpuClearRenderer(this);
this.mipmapRenderer = new WebgpuMipmapRenderer(this);
this.resolver = new WebgpuResolver(this);
this.postInit();
return this;
}
postInit() {
super.postInit();
this.initializeRenderState();
this.setupPassEncoderDefaults();
this.gpuProfiler = new WebgpuGpuProfiler(this);
// init dynamic buffer using 100kB allocation
this.dynamicBuffers = new WebgpuDynamicBuffers(this, 100 * 1024, this.limits.minUniformBufferOffsetAlignment);
// empty bind group
this.emptyBindGroup = new BindGroup(this, new BindGroupFormat(this, []));
this.emptyBindGroup.update();
}
createBackbuffer() {
this.supportsStencil = this.initOptions.stencil;
this.backBuffer = new RenderTarget({
name: 'WebgpuFramebuffer',
graphicsDevice: this,
depth: this.initOptions.depth,
stencil: this.supportsStencil,
samples: this.samples
});
}
frameStart() {
super.frameStart();
this.gpuProfiler.frameStart();
// submit any commands collected before the frame rendering
this.submit();
WebgpuDebug.memory(this);
WebgpuDebug.validate(this);
// current frame color output buffer
const outColorBuffer = this.gpuContext.getCurrentTexture();
DebugHelper.setLabel(outColorBuffer, `${this.backBuffer.name}`);
// reallocate framebuffer if dimensions change, to match the output texture
if (this.backBufferSize.x !== outColorBuffer.width || this.backBufferSize.y !== outColorBuffer.height) {
this.backBufferSize.set(outColorBuffer.width, outColorBuffer.height);
this.backBuffer.destroy();
this.backBuffer = null;
this.createBackbuffer();
}
const rt = this.backBuffer;
const wrt = rt.impl;
// assign the format, allowing following init call to use it to allocate matching multisampled buffer
wrt.setColorAttachment(0, undefined, outColorBuffer.format);
this.initRenderTarget(rt);
// assign current frame's render texture
wrt.assignColorTexture(outColorBuffer);
WebgpuDebug.end(this);
WebgpuDebug.end(this);
}
frameEnd() {
super.frameEnd();
this.gpuProfiler.frameEnd();
// submit scheduled command buffers
this.submit();
if (!this.contextLost) {
this.gpuProfiler.request();
}
}
createBufferImpl(usageFlags) {
return new WebgpuBuffer(usageFlags);
}
createUniformBufferImpl(uniformBuffer) {
return new WebgpuUniformBuffer(uniformBuffer);
}
createVertexBufferImpl(vertexBuffer, format, options) {
return new WebgpuVertexBuffer(vertexBuffer, format, options);
}
createIndexBufferImpl(indexBuffer, options) {
return new WebgpuIndexBuffer(indexBuffer, options);
}
createShaderImpl(shader) {
return new WebgpuShader(shader);
}
createTextureImpl(texture) {
return new WebgpuTexture(texture);
}
createRenderTargetImpl(renderTarget) {
return new WebgpuRenderTarget(renderTarget);
}
createBindGroupFormatImpl(bindGroupFormat) {
return new WebgpuBindGroupFormat(bindGroupFormat);
}
createBindGroupImpl(bindGroup) {
return new WebgpuBindGroup();
}
createComputeImpl(compute) {
return new WebgpuCompute(compute);
}
/**
* @param {number} index - Index of the bind group slot
* @param {import('../bind-group.js').BindGroup} bindGroup - Bind group to attach
* @param {number[]} [offsets] - Byte offsets for all uniform buffers in the bind group.
*/
setBindGroup(index, bindGroup, offsets) {
// TODO: this condition should be removed, it's here to handle fake grab pass, which should be refactored instead
if (this.passEncoder) {
// set it on the device
this.passEncoder.setBindGroup(index, bindGroup.impl.bindGroup, offsets ?? bindGroup.uniformBufferOffsets);
// store the active formats, used by the pipeline creation
this.bindGroupFormats[index] = bindGroup.format.impl;
}
}
submitVertexBuffer(vertexBuffer, slot) {
const format = vertexBuffer.format;
const { interleaved, elements } = format;
const elementCount = elements.length;
const vbBuffer = vertexBuffer.impl.buffer;
if (interleaved) {
// for interleaved buffers, we use a single vertex buffer, and attributes are specified using the layout
this.passEncoder.setVertexBuffer(slot, vbBuffer);
return 1;
}
// non-interleaved - vertex buffer per attribute
for (let i = 0; i < elementCount; i++) {
this.passEncoder.setVertexBuffer(slot + i, vbBuffer, elements[i].offset);
}
return elementCount;
}
validateVBLocations(vb0, vb1) {
// in case of multiple VBs, validate all elements use unique locations
const validateVB = (vb) => {
const { elements } = vb.format;
for (let i = 0; i < elements.length; i++) {
const name = elements[i].name;
const location = semanticToLocation[name];
if (_uniqueLocations.has(location)) {
Debug.errorOnce(`Vertex buffer element location ${location} used by [${name}] is already used by element [${_uniqueLocations.get(location)}], while rendering [${DebugGraphics.toString()}]`);
}
_uniqueLocations.set(location, name);
}
};
validateVB(vb0);
validateVB(vb1);
_uniqueLocations.clear();
}
draw(primitive, numInstances = 1, keepBuffers) {
if (this.shader.ready && !this.shader.failed) {
WebgpuDebug.validate(this);
const passEncoder = this.passEncoder;
Debug.assert(passEncoder);
// vertex buffers
const vb0 = this.vertexBuffers[0];
const vb1 = this.vertexBuffers[1];
this.vertexBuffers.length = 0;
if (vb0) {
const vbSlot = this.submitVertexBuffer(vb0, 0);
if (vb1) {
Debug.call(() => this.validateVBLocations(vb0, vb1));
this.submitVertexBuffer(vb1, vbSlot);
}
}
// render pipeline
const pipeline = this.renderPipeline.get(primitive, vb0?.format, vb1?.format, this.shader, this.renderTarget,
this.bindGroupFormats, this.blendState, this.depthState, this.cullMode,
this.stencilEnabled, this.stencilFront, this.stencilBack);
Debug.assert(pipeline);
if (this.pipeline !== pipeline) {
this.pipeline = pipeline;
passEncoder.setPipeline(pipeline);
}
// draw
const ib = this.indexBuffer;
if (ib) {
this.indexBuffer = null;
passEncoder.setIndexBuffer(ib.impl.buffer, ib.impl.format);
passEncoder.drawIndexed(primitive.count, numInstances, primitive.base, 0, 0);
} else {
passEncoder.draw(primitive.count, numInstances, primitive.base, 0);
}
WebgpuDebug.end(this, {
vb0,
vb1,
ib,
primitive,
numInstances,
pipeline
});
}
}
setShader(shader, asyncCompile = false) {
if (shader !== this.shader) {
this.shader = shader;
// #if _PROFILER
// TODO: we should probably track other stats instead, like pipeline switches
this._shaderSwitchesPerFrame++;
// #endif
}
}
setBlendState(blendState) {
this.blendState.copy(blendState);
}
setDepthState(depthState) {
this.depthState.copy(depthState);
}
setStencilState(stencilFront, stencilBack) {
if (stencilFront || stencilBack) {
this.stencilEnabled = true;
this.stencilFront.copy(stencilFront ?? StencilParameters.DEFAULT);
this.stencilBack.copy(stencilBack ?? StencilParameters.DEFAULT);
// ref value - based on stencil front
const ref = this.stencilFront.ref;
if (this.stencilRef !== ref) {
this.stencilRef = ref;
this.passEncoder.setStencilReference(ref);
}
} else {
this.stencilEnabled = false;
}
}
setBlendColor(r, g, b, a) {
const c = this.blendColor;
if (r !== c.r || g !== c.g || b !== c.b || a !== c.a) {
c.set(r, g, b, a);
this.passEncoder.setBlendConstant(c);
}
}
setCullMode(cullMode) {
this.cullMode = cullMode;
}
setAlphaToCoverage(state) {
}
initializeContextCaches() {
super.initializeContextCaches();
}
/**
* Set up default values for the render pass encoder.
*/
setupPassEncoderDefaults() {
this.pipeline = null;
this.stencilRef = 0;
this.blendColor.set(0, 0, 0, 0);
}
_uploadDirtyTextures() {
this.textures.forEach((texture) => {
if (texture._needsUpload || texture._needsMipmaps) {
texture.upload();
}
});
}
/**
* Start a render pass.
*
* @param {import('../render-pass.js').RenderPass} renderPass - The render pass to start.
* @ignore
*/
startRenderPass(renderPass) {
// upload textures that need it, to avoid them being uploaded / their mips generated during the pass
// TODO: this needs a better solution
this._uploadDirtyTextures();
WebgpuDebug.internal(this);
WebgpuDebug.validate(this);
const rt = renderPass.renderTarget || this.backBuffer;
this.renderTarget = rt;
Debug.assert(rt);
/** @type {WebgpuRenderTarget} */
const wrt = rt.impl;
// create a new encoder for each pass
this.commandEncoder = this.wgpu.createCommandEncoder();
DebugHelper.setLabel(this.commandEncoder, `${renderPass.name}-Encoder`);
// framebuffer is initialized at the start of the frame
if (rt !== this.backBuffer) {
this.initRenderTarget(rt);
}
// set up clear / store / load settings
wrt.setupForRenderPass(renderPass);
const renderPassDesc = wrt.renderPassDescriptor;
// timestamp
if (this.gpuProfiler._enabled) {
if (this.gpuProfiler.timestampQueriesSet) {
const slot = this.gpuProfiler.getSlot(renderPass.name);
renderPassDesc.timestampWrites = {
querySet: this.gpuProfiler.timestampQueriesSet.querySet,
beginningOfPassWriteIndex: slot * 2,
endOfPassWriteIndex: slot * 2 + 1
};
}
}
// start the pass
this.passEncoder = this.commandEncoder.beginRenderPass(renderPassDesc);
DebugHelper.setLabel(this.passEncoder, renderPass.name);
// push marker to the passEncoder
DebugGraphics.pushGpuMarker(this, `Pass:${renderPass.name}`);
this.setupPassEncoderDefaults();
// the pass always clears full target
// TODO: avoid this setting the actual viewport/scissor on webgpu as those are automatically reset to full
// render target. We just need to update internal state, for the get functionality to return it.
const { width, height } = rt;
this.setViewport(0, 0, width, height);
this.setScissor(0, 0, width, height);
Debug.assert(!this.insideRenderPass, 'RenderPass cannot be started while inside another render pass.');
this.insideRenderPass = true;
}
/**
* End a render pass.
*
* @param {import('../render-pass.js').RenderPass} renderPass - The render pass to end.
* @ignore
*/
endRenderPass(renderPass) {
// pop the marker from the passEncoder
DebugGraphics.popGpuMarker(this);
// end the render pass
this.passEncoder.end();
this.passEncoder = null;
this.insideRenderPass = false;
// each render pass can use different number of bind groups
this.bindGroupFormats.length = 0;
// generate mipmaps using the same command buffer encoder
for (let i = 0; i < renderPass.colorArrayOps.length; i++) {
const colorOps = renderPass.colorArrayOps[i];
if (colorOps.mipmaps) {
this.mipmapRenderer.generate(renderPass.renderTarget._colorBuffers[i].impl);
}
}
// schedule command buffer submission
const cb = this.commandEncoder.finish();
DebugHelper.setLabel(cb, `${renderPass.name}-CommandBuffer`);
this.addCommandBuffer(cb);
this.commandEncoder = null;
WebgpuDebug.end(this, { renderPass });
WebgpuDebug.end(this, { renderPass });
}
startComputePass() {
WebgpuDebug.internal(this);
WebgpuDebug.validate(this);
// create a new encoder for each pass
this.commandEncoder = this.wgpu.createCommandEncoder();
// DebugHelper.setLabel(this.commandEncoder, `${renderPass.name}-Encoder`);
DebugHelper.setLabel(this.commandEncoder, 'ComputePass-Encoder');
// clear cached encoder state
this.pipeline = null;
// TODO: add performance queries to compute passes
// start the pass
this.passEncoder = this.commandEncoder.beginComputePass();
DebugHelper.setLabel(this.passEncoder, 'ComputePass');
Debug.assert(!this.insideRenderPass, 'ComputePass cannot be started while inside another pass.');
this.insideRenderPass = true;
}
endComputePass() {
// end the compute pass
this.passEncoder.end();
this.passEncoder = null;
this.insideRenderPass = false;
// each render pass can use different number of bind groups
this.bindGroupFormats.length = 0;
// schedule command buffer submission
const cb = this.commandEncoder.finish();
// DebugHelper.setLabel(cb, `${renderPass.name}-CommandBuffer`);
DebugHelper.setLabel(cb, 'ComputePass-CommandBuffer');
this.addCommandBuffer(cb);
this.commandEncoder = null;
WebgpuDebug.end(this);
WebgpuDebug.end(this);
}
computeDispatch(computes) {
this.startComputePass();
// update uniform buffers and bind groups
for (let i = 0; i < computes.length; i++) {
const compute = computes[i];
compute.applyParameters();
compute.impl.updateBindGroup();
}
// dispatch
for (let i = 0; i < computes.length; i++) {
const compute = computes[i];
compute.impl.dispatch(compute.countX, compute.countY, compute.countZ);
}
this.endComputePass();
}
addCommandBuffer(commandBuffer, front = false) {
if (front) {
this.commandBuffers.unshift(commandBuffer);
} else {
this.commandBuffers.push(commandBuffer);
}
}
submit() {
if (this.commandBuffers.length > 0) {
// copy dynamic buffers data to the GPU (this schedules the copy CB to run before all other CBs)
this.dynamicBuffers.submit();
// trace all scheduled command buffers
Debug.call(() => {
if (this.commandBuffers.length > 0) {
Debug.trace(TRACEID_RENDER_QUEUE, `SUBMIT (${this.commandBuffers.length})`);
for (let i = 0; i < this.commandBuffers.length; i++) {
Debug.trace(TRACEID_RENDER_QUEUE, ` CB: ${this.commandBuffers[i].label}`);
}
}
});
this.wgpu.queue.submit(this.commandBuffers);
this.commandBuffers.length = 0;
// notify dynamic buffers
this.dynamicBuffers.onCommandBuffersSubmitted();
}
}
clear(options) {
if (options.flags) {
this.clearRenderer.clear(this, this.renderTarget, options, this.defaultClearOptions);
}
}
setViewport(x, y, w, h) {
// TODO: only execute when it changes. Also, the viewport of encoder matches the rendering attachments,
// so we can skip this if fullscreen
// TODO: this condition should be removed, it's here to handle fake grab pass, which should be refactored instead
if (this.passEncoder) {
if (!this.renderTarget.flipY) {
y = this.renderTarget.height - y - h;
}
this.vx = x;
this.vy = y;
this.vw = w;
this.vh = h;
this.passEncoder.setViewport(x, y, w, h, 0, 1);
}
}
setScissor(x, y, w, h) {
// TODO: only execute when it changes. Also, the viewport of encoder matches the rendering attachments,
// so we can skip this if fullscreen
// TODO: this condition should be removed, it's here to handle fake grab pass, which should be refactored instead
if (this.passEncoder) {
if (!this.renderTarget.flipY) {
y = this.renderTarget.height - y - h;
}
this.sx = x;
this.sy = y;
this.sw = w;
this.sh = h;
this.passEncoder.setScissorRect(x, y, w, h);
}
}
/**
* Clear the content of a storage buffer to 0.
*
* @param {import('./webgpu-buffer.js').WebgpuBuffer} storageBuffer - The storage buffer.
* @param {number} [offset] - The offset of data to clear. Defaults to 0.
* @param {number} [size] - The size of data to clear. Defaults to the full size of the buffer.
* @ignore
*/
clearStorageBuffer(storageBuffer, offset = 0, size = storageBuffer.byteSize) {
// use existing or create new encoder
const commandEncoder = this.commandEncoder ?? this.wgpu.createCommandEncoder();
commandEncoder.clearBuffer(storageBuffer.buffer, offset, size);
// if we created the encoder
if (!this.commandEncoder) {
DebugHelper.setLabel(commandEncoder, 'ReadStorageBuffer-Encoder');
const cb = commandEncoder.finish();
DebugHelper.setLabel(cb, 'ReadStorageBuffer-CommandBuffer');
this.addCommandBuffer(cb);
}
}
/**
* Read a content of a storage buffer.
*
* @param {import('./webgpu-buffer.js').WebgpuBuffer} storageBuffer - The storage buffer.
* @param {number} [offset] - The byte offset of data to read. Defaults to 0.
* @param {number} [size] - The byte size of data to read. Defaults to the full size of the
* buffer minus the offset.
* @param {ArrayBufferView} [data] - Typed array to populate with the data read from the storage
* buffer. When typed array is supplied, enough space needs to be reserved, otherwise only
* partial data is copied. If not specified, the data is returned in an Uint8Array. Defaults to
* null.
* @param {boolean} [immediate] - If true, the read operation will be executed as soon as
* possible. This has a performance impact, so it should be used only when necessary. Defaults
* to false.
* @returns {Promise<ArrayBufferView>} A promise that resolves with the data read from the storage
* buffer.
* @ignore
*/
readStorageBuffer(storageBuffer, offset = 0, size = storageBuffer.byteSize - offset, data = null, immediate = false) {
// create a temporary staging buffer
const stagingBuffer = this.createBufferImpl(BUFFERUSAGE_READ | BUFFERUSAGE_COPY_DST);
stagingBuffer.allocate(this, size);
const destBuffer = stagingBuffer.buffer;
// use existing or create new encoder
const commandEncoder = this.commandEncoder ?? this.wgpu.createCommandEncoder();
// copy the GPU buffer to the staging buffer
commandEncoder.copyBufferToBuffer(storageBuffer.buffer, offset, destBuffer, 0, size);
// if we created new encoder
if (!this.commandEncoder) {
DebugHelper.setLabel(commandEncoder, 'ReadStorageBuffer-Encoder');
const cb = commandEncoder.finish();
DebugHelper.setLabel(cb, 'ReadStorageBuffer-CommandBuffer');
this.addCommandBuffer(cb);
}
return this.readBuffer(stagingBuffer, size, data, immediate);
}
readBuffer(stagingBuffer, size, data = null, immediate = false) {
const destBuffer = stagingBuffer.buffer;
// return a promise that resolves with the data
return new Promise((resolve, reject) => {
const read = () => {
destBuffer?.mapAsync(GPUMapMode.READ).then(() => {
// copy data to a buffer
data ??= new Uint8Array(size);
const copySrc = destBuffer.getMappedRange(0, size);
// use the same type as the target
const srcType = data.constructor;
data.set(new srcType(copySrc));
// release staging buffer
destBuffer.unmap();
stagingBuffer.destroy(this);
resolve(data);
});
};
if (immediate) {
// submit the command buffer immediately
this.submit();
read();
} else {
// map the buffer during the next event handling cycle, when the command buffer is submitted
setTimeout(() => {
read();
});
}
});
}
/**
* Issues a write operation of the provided data into a storage buffer.
*
* @param {import('./webgpu-buffer.js').WebgpuBuffer} storageBuffer - The storage buffer.
* @param {number} bufferOffset - The offset in bytes to start writing to the storage buffer.
* @param {ArrayBufferView} data - The data to write to the storage buffer.
* @param {number} dataOffset - Offset in data to begin writing from. Given in elements if data
* is a TypedArray and bytes otherwise.
* @param {number} size - Size of content to write from data to buffer. Given in elements if
* data is a TypedArray and bytes otherwise.
*/
writeStorageBuffer(storageBuffer, bufferOffset = 0, data, dataOffset = 0, size) {
Debug.assert(storageBuffer.buffer);
Debug.assert(data);
this.wgpu.queue.writeBuffer(storageBuffer.buffer, bufferOffset, data, dataOffset, size);
}
/**
* Copies source render target into destination render target. Mostly used by post-effects.
*
* @param {RenderTarget} [source] - The source render target. Defaults to frame buffer.
* @param {RenderTarget} [dest] - The destination render target. Defaults to frame buffer.
* @param {boolean} [color] - If true, will copy the color buffer. Defaults to false.
* @param {boolean} [depth] - If true, will copy the depth buffer. Defaults to false.
* @returns {boolean} True if the copy was successful, false otherwise.
*/
copyRenderTarget(source, dest, color, depth) {
/** @type {GPUExtent3D} */
const copySize = {
width: source ? source.width : dest.width,
height: source ? source.height : dest.height,
depthOrArrayLayers: 1
};
// use existing or create new encoder if not in a render pass