@@ -69,7 +69,6 @@ public abstract class PGL {
69
69
70
70
// Parameters
71
71
72
- protected static boolean USE_FBOLAYER_BY_DEFAULT = false ;
73
72
public static int REQUESTED_DEPTH_BITS = 24 ;
74
73
public static int REQUESTED_STENCIL_BITS = 8 ;
75
74
public static int REQUESTED_ALPHA_BITS = 8 ;
@@ -128,16 +127,17 @@ public abstract class PGL {
128
127
* order to make sure the lines are always on top of the fill geometry */
129
128
protected static float STROKE_DISPLACEMENT = 0.999f ;
130
129
130
+ protected static boolean DOUBLE_BUFFERED = true ;
131
131
132
132
// ........................................................
133
133
134
134
// FBO layer
135
135
136
- protected boolean requestedFBOLayer = false ;
137
- protected boolean requestedFBOLayerReset = false ;
136
+ protected boolean fboLayerEnabled = false ;
138
137
protected boolean fboLayerCreated = false ;
139
- protected boolean fboLayerInUse = false ;
140
- protected boolean firstFrame = true ;
138
+ protected boolean fboLayerEnabledReq = false ;
139
+ protected boolean fboLayerDisableReq = false ;
140
+ protected boolean fbolayerResetReq = false ;
141
141
public int reqNumSamples ;
142
142
protected int numSamples ;
143
143
@@ -442,10 +442,6 @@ public PGL(PGraphicsOpenGL pg) {
442
442
glMultiDepthStencil = allocateIntBuffer (1 );
443
443
glMultiDepth = allocateIntBuffer (1 );
444
444
glMultiStencil = allocateIntBuffer (1 );
445
-
446
- fboLayerCreated = false ;
447
- fboLayerInUse = false ;
448
- firstFrame = false ;
449
445
}
450
446
451
447
byteBuffer = allocateByteBuffer (1 );
@@ -494,39 +490,44 @@ static public int smoothToSamples(int smooth) {
494
490
495
491
496
492
protected int getReadFramebuffer () {
497
- return fboLayerInUse ? glColorFbo .get (0 ) : 0 ;
493
+ return fboLayerEnabled ? glColorFbo .get (0 ) : 0 ;
498
494
}
499
495
500
496
501
497
protected int getDrawFramebuffer () {
502
- if (fboLayerInUse ) return 1 < numSamples ? glMultiFbo .get (0 ) :
503
- glColorFbo .get (0 );
498
+ if (fboLayerEnabled ) return 1 < numSamples ? glMultiFbo .get (0 ) :
499
+ glColorFbo .get (0 );
504
500
else return 0 ;
505
501
}
506
502
507
503
508
504
protected int getDefaultDrawBuffer () {
509
- return fboLayerInUse ? COLOR_ATTACHMENT0 : BACK ;
505
+ return fboLayerEnabled ? COLOR_ATTACHMENT0 : BACK ;
510
506
}
511
507
512
508
513
509
protected int getDefaultReadBuffer () {
514
- return fboLayerInUse ? COLOR_ATTACHMENT0 : FRONT ;
510
+ return fboLayerEnabled ? COLOR_ATTACHMENT0 : FRONT ;
515
511
}
516
512
517
513
518
514
protected boolean isFBOBacked () {;
519
- return fboLayerInUse ;
515
+ return fboLayerEnabled ;
516
+ }
517
+
518
+
519
+ public void enableFBOLayer () {
520
+ fboLayerEnabledReq = true ;
520
521
}
521
522
522
523
523
- public void requestFBOLayer () {
524
- requestedFBOLayer = true ;
524
+ public void disableFBOLayer () {
525
+ fboLayerDisableReq = true ;
525
526
}
526
527
527
528
528
- public void requestFBOLayerReset () {
529
- requestedFBOLayerReset = true ;
529
+ public void resetFBOLayer () {
530
+ fbolayerResetReq = true ;
530
531
}
531
532
532
533
@@ -639,7 +640,7 @@ public void initPresentMode(float x, float y) {
639
640
presentMode = true ;
640
641
presentX = x ;
641
642
presentY = y ;
642
- requestFBOLayer ();
643
+ enableFBOLayer ();
643
644
}
644
645
645
646
@@ -693,12 +694,17 @@ protected void beginRender() {
693
694
pclearColor = clearColor ;
694
695
clearColor = false ;
695
696
696
- if (requestedFBOLayer ) {
697
- if (requestedFBOLayerReset ) {
697
+ if (fboLayerEnabledReq ) {
698
+ fboLayerEnabled = true ;
699
+ fboLayerEnabledReq = false ;
700
+ }
701
+
702
+ if (fboLayerEnabled ) {
703
+ if (fbolayerResetReq ) {
698
704
destroyFBOLayer ();
699
- requestedFBOLayerReset = false ;
705
+ fbolayerResetReq = false ;
700
706
}
701
- if (!fboLayerCreated ) {
707
+ if (!fboLayerCreated && DOUBLE_BUFFERED ) {
702
708
createFBOLayer ();
703
709
}
704
710
@@ -711,7 +717,7 @@ protected void beginRender() {
711
717
bindFramebufferImpl (FRAMEBUFFER , glMultiFbo .get (0 ));
712
718
}
713
719
714
- if (firstFrame ) {
720
+ if (sketch . frameCount == 0 ) {
715
721
// No need to draw back color buffer because we are in the first frame.
716
722
int argb = graphics .backgroundColor ;
717
723
float a = ((argb >> 24 ) & 0xff ) / 255.0f ;
@@ -735,18 +741,12 @@ protected void beginRender() {
735
741
0 , 0 , (int )(scale * graphics .width ), (int )(scale * graphics .height ),
736
742
0 , 0 , graphics .width , graphics .height );
737
743
}
738
-
739
- fboLayerInUse = true ;
740
- } else {
741
- fboLayerInUse = false ;
742
744
}
743
-
744
- firstFrame = false ;
745
745
}
746
746
747
747
748
748
protected void endRender (int windowColor ) {
749
- if (fboLayerInUse ) {
749
+ if (fboLayerEnabled ) {
750
750
syncBackTexture ();
751
751
752
752
// Draw the contents of the back texture to the screen framebuffer.
@@ -804,8 +804,17 @@ protected void endRender(int windowColor) {
804
804
int temp = frontTex ;
805
805
frontTex = backTex ;
806
806
backTex = temp ;
807
+
808
+ if (fboLayerDisableReq ) {
809
+ fboLayerEnabled = false ;
810
+ fboLayerDisableReq = false ;
811
+ }
807
812
} else if (!clearColor && 0 < sketch .frameCount || !sketch .isLooping ()) {
808
- requestFBOLayer ();
813
+ enableFBOLayer ();
814
+ }
815
+
816
+ if (fboLayerEnabledReq && !fboLayerCreated && !DOUBLE_BUFFERED ) {
817
+ createFBOLayer ();
809
818
}
810
819
}
811
820
@@ -944,10 +953,7 @@ protected void destroyFBOLayer() {
944
953
deleteRenderbuffers (1 , glMultiDepth );
945
954
deleteRenderbuffers (1 , glMultiStencil );
946
955
}
947
-
948
956
fboLayerCreated = false ;
949
- fboLayerInUse = false ;
950
- // firstFrame = false;
951
957
}
952
958
953
959
0 commit comments