-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
Copy pathPostProcessStageCollection.js
889 lines (800 loc) · 27 KB
/
PostProcessStageCollection.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
import arraySlice from "../Core/arraySlice.js";
import Check from "../Core/Check.js";
import defined from "../Core/defined.js";
import destroyObject from "../Core/destroyObject.js";
import DeveloperError from "../Core/DeveloperError.js";
import PixelFormat from "../Core/PixelFormat.js";
import PixelDatatype from "../Renderer/PixelDatatype.js";
import Sampler from "../Renderer/Sampler.js";
import Texture from "../Renderer/Texture.js";
import TextureMagnificationFilter from "../Renderer/TextureMagnificationFilter.js";
import TextureMinificationFilter from "../Renderer/TextureMinificationFilter.js";
import TextureWrap from "../Renderer/TextureWrap.js";
import PassThrough from "../Shaders/PostProcessStages/PassThrough.js";
import PostProcessStageLibrary from "./PostProcessStageLibrary.js";
import PostProcessStageTextureCache from "./PostProcessStageTextureCache.js";
import Tonemapper from "./Tonemapper.js";
const stackScratch = [];
/**
* A collection of {@link PostProcessStage}s and/or {@link PostProcessStageComposite}s.
* <p>
* The input texture for each post-process stage is the texture rendered to by the scene or the texture rendered
* to by the previous stage in the collection.
* </p>
* <p>
* If the ambient occlusion or bloom stages are enabled, they will execute before all other stages.
* </p>
* <p>
* If the FXAA stage is enabled, it will execute after all other stages.
* </p>
*
* @alias PostProcessStageCollection
* @constructor
*/
function PostProcessStageCollection() {
const fxaa = PostProcessStageLibrary.createFXAAStage();
const ao = PostProcessStageLibrary.createAmbientOcclusionStage();
const bloom = PostProcessStageLibrary.createBloomStage();
// Auto-exposure is currently disabled because most shaders output a value in [0.0, 1.0].
// Some shaders, such as the atmosphere and ground atmosphere, output values slightly over 1.0.
this._autoExposureEnabled = false;
this._autoExposure = PostProcessStageLibrary.createAutoExposureStage();
this._tonemapping = undefined;
this._tonemapper = undefined;
// set tonemapper and tonemapping
this.tonemapper = Tonemapper.ACES;
const tonemapping = this._tonemapping;
fxaa.enabled = false;
ao.enabled = false;
bloom.enabled = false;
tonemapping.enabled = false; // will be enabled if necessary in update
const textureCache = new PostProcessStageTextureCache(this);
const stageNames = {};
const stack = stackScratch;
stack.push(fxaa, ao, bloom, tonemapping);
while (stack.length > 0) {
const stage = stack.pop();
stageNames[stage.name] = stage;
stage._textureCache = textureCache;
const length = stage.length;
if (defined(length)) {
for (let i = 0; i < length; ++i) {
stack.push(stage.get(i));
}
}
}
this._stages = [];
this._activeStages = [];
this._previousActiveStages = [];
this._randomTexture = undefined; // For AO
const that = this;
ao.uniforms.randomTexture = function () {
return that._randomTexture;
};
this._ao = ao;
this._bloom = bloom;
this._fxaa = fxaa;
this._aoEnabled = undefined;
this._bloomEnabled = undefined;
this._tonemappingEnabled = undefined;
this._fxaaEnabled = undefined;
this._activeStagesChanged = false;
this._stagesRemoved = false;
this._textureCacheDirty = false;
this._stageNames = stageNames;
this._textureCache = textureCache;
}
Object.defineProperties(PostProcessStageCollection.prototype, {
/**
* Determines if all of the post-process stages in the collection are ready to be executed.
*
* @memberof PostProcessStageCollection.prototype
* @type {Boolean}
* @readonly
*/
ready: {
get: function () {
let readyAndEnabled = false;
const stages = this._stages;
const length = stages.length;
for (let i = length - 1; i >= 0; --i) {
const stage = stages[i];
readyAndEnabled = readyAndEnabled || (stage.ready && stage.enabled);
}
const fxaa = this._fxaa;
const ao = this._ao;
const bloom = this._bloom;
const tonemapping = this._tonemapping;
readyAndEnabled = readyAndEnabled || (fxaa.ready && fxaa.enabled);
readyAndEnabled = readyAndEnabled || (ao.ready && ao.enabled);
readyAndEnabled = readyAndEnabled || (bloom.ready && bloom.enabled);
readyAndEnabled =
readyAndEnabled || (tonemapping.ready && tonemapping.enabled);
return readyAndEnabled;
},
},
/**
* A post-process stage for Fast Approximate Anti-aliasing.
* <p>
* When enabled, this stage will execute after all others.
* </p>
*
* @memberof PostProcessStageCollection.prototype
* @type {PostProcessStage}
* @readonly
*/
fxaa: {
get: function () {
return this._fxaa;
},
},
/**
* A post-process stage that applies Horizon-based Ambient Occlusion (HBAO) to the input texture.
* <p>
* Ambient occlusion simulates shadows from ambient light. These shadows would always be present when the
* surface receives light and regardless of the light's position.
* </p>
* <p>
* The uniforms have the following properties: <code>intensity</code>, <code>bias</code>, <code>lengthCap</code>,
* <code>stepSize</code>, <code>frustumLength</code>, <code>ambientOcclusionOnly</code>,
* <code>delta</code>, <code>sigma</code>, and <code>blurStepSize</code>.
* </p>
* <ul>
* <li><code>intensity</code> is a scalar value used to lighten or darken the shadows exponentially. Higher values make the shadows darker. The default value is <code>3.0</code>.</li>
*
* <li><code>bias</code> is a scalar value representing an angle in radians. If the dot product between the normal of the sample and the vector to the camera is less than this value,
* sampling stops in the current direction. This is used to remove shadows from near planar edges. The default value is <code>0.1</code>.</li>
*
* <li><code>lengthCap</code> is a scalar value representing a length in meters. If the distance from the current sample to first sample is greater than this value,
* sampling stops in the current direction. The default value is <code>0.26</code>.</li>
*
* <li><code>stepSize</code> is a scalar value indicating the distance to the next texel sample in the current direction. The default value is <code>1.95</code>.</li>
*
* <li><code>frustumLength</code> is a scalar value in meters. If the current fragment has a distance from the camera greater than this value, ambient occlusion is not computed for the fragment.
* The default value is <code>1000.0</code>.</li>
*
* <li><code>ambientOcclusionOnly</code> is a boolean value. When <code>true</code>, only the shadows generated are written to the output. When <code>false</code>, the input texture is modulated
* with the ambient occlusion. This is a useful debug option for seeing the effects of changing the uniform values. The default value is <code>false</code>.</li>
* </ul>
* <p>
* <code>delta</code>, <code>sigma</code>, and <code>blurStepSize</code> are the same properties as {@link PostProcessStageLibrary#createBlurStage}.
* The blur is applied to the shadows generated from the image to make them smoother.
* </p>
* <p>
* When enabled, this stage will execute before all others.
* </p>
*
* @memberof PostProcessStageCollection.prototype
* @type {PostProcessStageComposite}
* @readonly
*/
ambientOcclusion: {
get: function () {
return this._ao;
},
},
/**
* A post-process stage for a bloom effect.
* <p>
* A bloom effect adds glow effect, makes bright areas brighter, and dark areas darker.
* </p>
* <p>
* This stage has the following uniforms: <code>contrast</code>, <code>brightness</code>, <code>glowOnly</code>,
* <code>delta</code>, <code>sigma</code>, and <code>stepSize</code>.
* </p>
* <ul>
* <li><code>contrast</code> is a scalar value in the range [-255.0, 255.0] and affects the contract of the effect. The default value is <code>128.0</code>.</li>
*
* <li><code>brightness</code> is a scalar value. The input texture RGB value is converted to hue, saturation, and brightness (HSB) then this value is
* added to the brightness. The default value is <code>-0.3</code>.</li>
*
* <li><code>glowOnly</code> is a boolean value. When <code>true</code>, only the glow effect will be shown. When <code>false</code>, the glow will be added to the input texture.
* The default value is <code>false</code>. This is a debug option for viewing the effects when changing the other uniform values.</li>
* </ul>
* <p>
* <code>delta</code>, <code>sigma</code>, and <code>stepSize</code> are the same properties as {@link PostProcessStageLibrary#createBlurStage}.
* The blur is applied to the shadows generated from the image to make them smoother.
* </p>
* <p>
* When enabled, this stage will execute before all others.
* </p>
*
* @memberOf PostProcessStageCollection.prototype
* @type {PostProcessStageComposite}
* @readonly
*/
bloom: {
get: function () {
return this._bloom;
},
},
/**
* The number of post-process stages in this collection.
*
* @memberof PostProcessStageCollection.prototype
* @type {Number}
* @readonly
*/
length: {
get: function () {
removeStages(this);
return this._stages.length;
},
},
/**
* A reference to the last texture written to when executing the post-process stages in this collection.
*
* @memberof PostProcessStageCollection.prototype
* @type {Texture}
* @readonly
* @private
*/
outputTexture: {
get: function () {
const fxaa = this._fxaa;
if (fxaa.enabled && fxaa.ready) {
return this.getOutputTexture(fxaa.name);
}
const stages = this._stages;
const length = stages.length;
for (let i = length - 1; i >= 0; --i) {
const stage = stages[i];
if (defined(stage) && stage.ready && stage.enabled) {
return this.getOutputTexture(stage.name);
}
}
const tonemapping = this._tonemapping;
if (tonemapping.enabled && tonemapping.ready) {
return this.getOutputTexture(tonemapping.name);
}
const bloom = this._bloom;
if (bloom.enabled && bloom.ready) {
return this.getOutputTexture(bloom.name);
}
const ao = this._ao;
if (ao.enabled && ao.ready) {
return this.getOutputTexture(ao.name);
}
return undefined;
},
},
/**
* Whether the collection has a stage that has selected features.
*
* @memberof PostProcessStageCollection.prototype
* @type {Boolean}
* @readonly
* @private
*/
hasSelected: {
get: function () {
const stages = arraySlice(this._stages);
while (stages.length > 0) {
const stage = stages.pop();
if (!defined(stage)) {
continue;
}
if (defined(stage.selected)) {
return true;
}
const length = stage.length;
if (defined(length)) {
for (let i = 0; i < length; ++i) {
stages.push(stage.get(i));
}
}
}
return false;
},
},
/**
* Gets and sets the tonemapping algorithm used when rendering with high dynamic range.
*
* @memberof PostProcessStageCollection.prototype
* @type {Tonemapper}
* @private
*/
tonemapper: {
get: function () {
return this._tonemapper;
},
set: function (value) {
if (this._tonemapper === value) {
return;
}
//>>includeStart('debug', pragmas.debug);
if (!Tonemapper.validate(value)) {
throw new DeveloperError("tonemapper was set to an invalid value.");
}
//>>includeEnd('debug');
if (defined(this._tonemapping)) {
delete this._stageNames[this._tonemapping.name];
this._tonemapping.destroy();
}
const useAutoExposure = this._autoExposureEnabled;
let tonemapper;
switch (value) {
case Tonemapper.REINHARD:
tonemapper = PostProcessStageLibrary.createReinhardTonemappingStage(
useAutoExposure
);
break;
case Tonemapper.MODIFIED_REINHARD:
tonemapper = PostProcessStageLibrary.createModifiedReinhardTonemappingStage(
useAutoExposure
);
break;
case Tonemapper.FILMIC:
tonemapper = PostProcessStageLibrary.createFilmicTonemappingStage(
useAutoExposure
);
break;
default:
tonemapper = PostProcessStageLibrary.createAcesTonemappingStage(
useAutoExposure
);
break;
}
if (useAutoExposure) {
const autoexposure = this._autoExposure;
tonemapper.uniforms.autoExposure = function () {
return autoexposure.outputTexture;
};
}
this._tonemapper = value;
this._tonemapping = tonemapper;
if (defined(this._stageNames)) {
this._stageNames[tonemapper.name] = tonemapper;
tonemapper._textureCache = this._textureCache;
}
this._textureCacheDirty = true;
},
},
});
function removeStages(collection) {
if (!collection._stagesRemoved) {
return;
}
collection._stagesRemoved = false;
const newStages = [];
const stages = collection._stages;
const length = stages.length;
for (let i = 0, j = 0; i < length; ++i) {
const stage = stages[i];
if (stage) {
stage._index = j++;
newStages.push(stage);
}
}
collection._stages = newStages;
}
/**
* Adds the post-process stage to the collection.
*
* @param {PostProcessStage|PostProcessStageComposite} stage The post-process stage to add to the collection.
* @return {PostProcessStage|PostProcessStageComposite} The post-process stage that was added to the collection.
*
* @exception {DeveloperError} The post-process stage has already been added to the collection or does not have a unique name.
*/
PostProcessStageCollection.prototype.add = function (stage) {
//>>includeStart('debug', pragmas.debug);
Check.typeOf.object("stage", stage);
//>>includeEnd('debug');
const stageNames = this._stageNames;
const stack = stackScratch;
stack.push(stage);
while (stack.length > 0) {
const currentStage = stack.pop();
//>>includeStart('debug', pragmas.debug);
if (defined(stageNames[currentStage.name])) {
throw new DeveloperError(
`${currentStage.name} has already been added to the collection or does not have a unique name.`
);
}
//>>includeEnd('debug');
stageNames[currentStage.name] = currentStage;
currentStage._textureCache = this._textureCache;
const length = currentStage.length;
if (defined(length)) {
for (let i = 0; i < length; ++i) {
stack.push(currentStage.get(i));
}
}
}
const stages = this._stages;
stage._index = stages.length;
stages.push(stage);
this._textureCacheDirty = true;
return stage;
};
/**
* Removes a post-process stage from the collection and destroys it.
*
* @param {PostProcessStage|PostProcessStageComposite} stage The post-process stage to remove from the collection.
* @return {Boolean} Whether the post-process stage was removed.
*/
PostProcessStageCollection.prototype.remove = function (stage) {
if (!this.contains(stage)) {
return false;
}
const stageNames = this._stageNames;
const stack = stackScratch;
stack.push(stage);
while (stack.length > 0) {
const currentStage = stack.pop();
delete stageNames[currentStage.name];
const length = currentStage.length;
if (defined(length)) {
for (let i = 0; i < length; ++i) {
stack.push(currentStage.get(i));
}
}
}
this._stages[stage._index] = undefined;
this._stagesRemoved = true;
this._textureCacheDirty = true;
stage._index = undefined;
stage._textureCache = undefined;
stage.destroy();
return true;
};
/**
* Returns whether the collection contains a post-process stage.
*
* @param {PostProcessStage|PostProcessStageComposite} stage The post-process stage.
* @return {Boolean} Whether the collection contains the post-process stage.
*/
PostProcessStageCollection.prototype.contains = function (stage) {
return (
defined(stage) &&
defined(stage._index) &&
stage._textureCache === this._textureCache
);
};
/**
* Gets the post-process stage at <code>index</code>.
*
* @param {Number} index The index of the post-process stage.
* @return {PostProcessStage|PostProcessStageComposite} The post-process stage at index.
*/
PostProcessStageCollection.prototype.get = function (index) {
removeStages(this);
const stages = this._stages;
//>>includeStart('debug', pragmas.debug);
const length = stages.length;
Check.typeOf.number.greaterThanOrEquals("stages length", length, 0);
Check.typeOf.number.greaterThanOrEquals("index", index, 0);
Check.typeOf.number.lessThan("index", index, length);
//>>includeEnd('debug');
return stages[index];
};
/**
* Removes all post-process stages from the collection and destroys them.
*/
PostProcessStageCollection.prototype.removeAll = function () {
const stages = this._stages;
const length = stages.length;
for (let i = 0; i < length; ++i) {
this.remove(stages[i]);
}
stages.length = 0;
};
/**
* Gets a post-process stage in the collection by its name.
*
* @param {String} name The name of the post-process stage.
* @return {PostProcessStage|PostProcessStageComposite} The post-process stage.
*
* @private
*/
PostProcessStageCollection.prototype.getStageByName = function (name) {
return this._stageNames[name];
};
/**
* Called before the post-process stages in the collection are executed. Calls update for each stage and creates WebGL resources.
*
* @param {Context} context The context.
* @param {Boolean} useLogDepth Whether the scene uses a logarithmic depth buffer.
*
* @private
*/
PostProcessStageCollection.prototype.update = function (
context,
useLogDepth,
useHdr
) {
removeStages(this);
const previousActiveStages = this._activeStages;
const activeStages = (this._activeStages = this._previousActiveStages);
this._previousActiveStages = previousActiveStages;
const stages = this._stages;
let length = (activeStages.length = stages.length);
let i;
let stage;
let count = 0;
for (i = 0; i < length; ++i) {
stage = stages[i];
if (stage.ready && stage.enabled && stage._isSupported(context)) {
activeStages[count++] = stage;
}
}
activeStages.length = count;
let activeStagesChanged = count !== previousActiveStages.length;
if (!activeStagesChanged) {
for (i = 0; i < count; ++i) {
if (activeStages[i] !== previousActiveStages[i]) {
activeStagesChanged = true;
break;
}
}
}
const ao = this._ao;
const bloom = this._bloom;
const autoexposure = this._autoExposure;
const tonemapping = this._tonemapping;
const fxaa = this._fxaa;
tonemapping.enabled = useHdr;
const aoEnabled = ao.enabled && ao._isSupported(context);
const bloomEnabled = bloom.enabled && bloom._isSupported(context);
const tonemappingEnabled =
tonemapping.enabled && tonemapping._isSupported(context);
const fxaaEnabled = fxaa.enabled && fxaa._isSupported(context);
if (
activeStagesChanged ||
this._textureCacheDirty ||
aoEnabled !== this._aoEnabled ||
bloomEnabled !== this._bloomEnabled ||
tonemappingEnabled !== this._tonemappingEnabled ||
fxaaEnabled !== this._fxaaEnabled
) {
// The number of stages to execute has changed.
// Update dependencies and recreate framebuffers.
this._textureCache.updateDependencies();
this._aoEnabled = aoEnabled;
this._bloomEnabled = bloomEnabled;
this._tonemappingEnabled = tonemappingEnabled;
this._fxaaEnabled = fxaaEnabled;
this._textureCacheDirty = false;
}
if (defined(this._randomTexture) && !aoEnabled) {
this._randomTexture.destroy();
this._randomTexture = undefined;
}
if (!defined(this._randomTexture) && aoEnabled) {
length = 256 * 256 * 3;
const random = new Uint8Array(length);
for (i = 0; i < length; i += 3) {
random[i] = Math.floor(Math.random() * 255.0);
}
this._randomTexture = new Texture({
context: context,
pixelFormat: PixelFormat.RGB,
pixelDatatype: PixelDatatype.UNSIGNED_BYTE,
source: {
arrayBufferView: random,
width: 256,
height: 256,
},
sampler: new Sampler({
wrapS: TextureWrap.REPEAT,
wrapT: TextureWrap.REPEAT,
minificationFilter: TextureMinificationFilter.NEAREST,
magnificationFilter: TextureMagnificationFilter.NEAREST,
}),
});
}
this._textureCache.update(context);
fxaa.update(context, useLogDepth);
ao.update(context, useLogDepth);
bloom.update(context, useLogDepth);
tonemapping.update(context, useLogDepth);
if (this._autoExposureEnabled) {
autoexposure.update(context, useLogDepth);
}
length = stages.length;
for (i = 0; i < length; ++i) {
stages[i].update(context, useLogDepth);
}
count = 0;
for (i = 0; i < length; ++i) {
stage = stages[i];
if (stage.ready && stage.enabled && stage._isSupported(context)) {
count++;
}
}
activeStagesChanged = count !== activeStages.length;
if (activeStagesChanged) {
this.update(context, useLogDepth, useHdr);
}
};
/**
* Clears all of the framebuffers used by the stages.
*
* @param {Context} context The context.
*
* @private
*/
PostProcessStageCollection.prototype.clear = function (context) {
this._textureCache.clear(context);
if (this._autoExposureEnabled) {
this._autoExposure.clear(context);
}
};
function getOutputTexture(stage) {
while (defined(stage.length)) {
stage = stage.get(stage.length - 1);
}
return stage.outputTexture;
}
/**
* Gets the output texture of a stage with the given name.
*
* @param {String} stageName The name of the stage.
* @return {Texture|undefined} The texture rendered to by the stage with the given name.
*
* @private
*/
PostProcessStageCollection.prototype.getOutputTexture = function (stageName) {
const stage = this.getStageByName(stageName);
if (!defined(stage)) {
return undefined;
}
return getOutputTexture(stage);
};
function execute(stage, context, colorTexture, depthTexture, idTexture) {
if (defined(stage.execute)) {
stage.execute(context, colorTexture, depthTexture, idTexture);
return;
}
const length = stage.length;
let i;
if (stage.inputPreviousStageTexture) {
execute(stage.get(0), context, colorTexture, depthTexture, idTexture);
for (i = 1; i < length; ++i) {
execute(
stage.get(i),
context,
getOutputTexture(stage.get(i - 1)),
depthTexture,
idTexture
);
}
} else {
for (i = 0; i < length; ++i) {
execute(stage.get(i), context, colorTexture, depthTexture, idTexture);
}
}
}
/**
* Executes all ready and enabled stages in the collection.
*
* @param {Context} context The context.
* @param {Texture} colorTexture The color texture rendered to by the scene.
* @param {Texture} depthTexture The depth texture written to by the scene.
* @param {Texture} idTexture The id texture written to by the scene.
*
* @private
*/
PostProcessStageCollection.prototype.execute = function (
context,
colorTexture,
depthTexture,
idTexture
) {
const activeStages = this._activeStages;
const length = activeStages.length;
const fxaa = this._fxaa;
const ao = this._ao;
const bloom = this._bloom;
const autoexposure = this._autoExposure;
const tonemapping = this._tonemapping;
const aoEnabled = ao.enabled && ao._isSupported(context);
const bloomEnabled = bloom.enabled && bloom._isSupported(context);
const autoExposureEnabled = this._autoExposureEnabled;
const tonemappingEnabled =
tonemapping.enabled && tonemapping._isSupported(context);
const fxaaEnabled = fxaa.enabled && fxaa._isSupported(context);
if (
!fxaaEnabled &&
!aoEnabled &&
!bloomEnabled &&
!tonemappingEnabled &&
length === 0
) {
return;
}
let initialTexture = colorTexture;
if (aoEnabled && ao.ready) {
execute(ao, context, initialTexture, depthTexture, idTexture);
initialTexture = getOutputTexture(ao);
}
if (bloomEnabled && bloom.ready) {
execute(bloom, context, initialTexture, depthTexture, idTexture);
initialTexture = getOutputTexture(bloom);
}
if (autoExposureEnabled && autoexposure.ready) {
execute(autoexposure, context, initialTexture, depthTexture, idTexture);
}
if (tonemappingEnabled && tonemapping.ready) {
execute(tonemapping, context, initialTexture, depthTexture, idTexture);
initialTexture = getOutputTexture(tonemapping);
}
let lastTexture = initialTexture;
if (length > 0) {
execute(activeStages[0], context, initialTexture, depthTexture, idTexture);
for (let i = 1; i < length; ++i) {
execute(
activeStages[i],
context,
getOutputTexture(activeStages[i - 1]),
depthTexture,
idTexture
);
}
lastTexture = getOutputTexture(activeStages[length - 1]);
}
if (fxaaEnabled && fxaa.ready) {
execute(fxaa, context, lastTexture, depthTexture, idTexture);
}
};
/**
* Copies the output of all executed stages to the color texture of a framebuffer.
*
* @param {Context} context The context.
* @param {Framebuffer} framebuffer The framebuffer to copy to.
*
* @private
*/
PostProcessStageCollection.prototype.copy = function (context, framebuffer) {
if (!defined(this._copyColorCommand)) {
const that = this;
this._copyColorCommand = context.createViewportQuadCommand(PassThrough, {
uniformMap: {
colorTexture: function () {
return that.outputTexture;
},
},
owner: this,
});
}
this._copyColorCommand.framebuffer = framebuffer;
this._copyColorCommand.execute(context);
};
/**
* Returns true if this object was destroyed; otherwise, false.
* <p>
* If this object was destroyed, it should not be used; calling any function other than
* <code>isDestroyed</code> will result in a {@link DeveloperError} exception.
* </p>
*
* @returns {Boolean} <code>true</code> if this object was destroyed; otherwise, <code>false</code>.
*
* @see PostProcessStageCollection#destroy
*/
PostProcessStageCollection.prototype.isDestroyed = function () {
return false;
};
/**
* Destroys the WebGL resources held by this object. Destroying an object allows for deterministic
* release of WebGL resources, instead of relying on the garbage collector to destroy this object.
* <p>
* Once an object is destroyed, it should not be used; calling any function other than
* <code>isDestroyed</code> will result in a {@link DeveloperError} exception. Therefore,
* assign the return value (<code>undefined</code>) to the object as done in the example.
* </p>
*
* @exception {DeveloperError} This object was destroyed, i.e., destroy() was called.
*
* @see PostProcessStageCollection#isDestroyed
*/
PostProcessStageCollection.prototype.destroy = function () {
this._fxaa.destroy();
this._ao.destroy();
this._bloom.destroy();
this._autoExposure.destroy();
this._tonemapping.destroy();
this.removeAll();
this._textureCache = this._textureCache && this._textureCache.destroy();
return destroyObject(this);
};
export default PostProcessStageCollection;