Project

General

Profile

Download (14.3 KB) Statistics
| Branch: | Revision:

library / src / main / java / org / distorted / library / main / DistortedFramebuffer.java @ 178983f4

1 f6fb3c6d Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2 2e569ff6 Leszek Koltunski
// Copyright 2016 Leszek Koltunski  leszek@koltunski.pl                                          //
3 f6fb3c6d Leszek Koltunski
//                                                                                               //
4 46b572b5 Leszek Koltunski
// This file is part of Distorted.                                                               //
5 f6fb3c6d Leszek Koltunski
//                                                                                               //
6 2e569ff6 Leszek Koltunski
// This library is free software; you can redistribute it and/or                                 //
7
// modify it under the terms of the GNU Lesser General Public                                    //
8
// License as published by the Free Software Foundation; either                                  //
9
// version 2.1 of the License, or (at your option) any later version.                            //
10 f6fb3c6d Leszek Koltunski
//                                                                                               //
11 2e569ff6 Leszek Koltunski
// This library is distributed in the hope that it will be useful,                               //
12 f6fb3c6d Leszek Koltunski
// but WITHOUT ANY WARRANTY; without even the implied warranty of                                //
13 2e569ff6 Leszek Koltunski
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU                             //
14
// Lesser General Public License for more details.                                               //
15 f6fb3c6d Leszek Koltunski
//                                                                                               //
16 2e569ff6 Leszek Koltunski
// You should have received a copy of the GNU Lesser General Public                              //
17
// License along with this library; if not, write to the Free Software                           //
18
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA                //
19 f6fb3c6d Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
20
21 fe82a979 Leszek Koltunski
package org.distorted.library.main;
22 f6fb3c6d Leszek Koltunski
23 b7074bc6 Leszek Koltunski
import android.opengl.GLES30;
24
import android.util.Log;
25 f6fb3c6d Leszek Koltunski
26
///////////////////////////////////////////////////////////////////////////////////////////////////
27 dedacd82 Leszek Koltunski
/**
28
 * Class which represents a OpenGL Framebuffer object.
29 71c3fecc Leszek Koltunski
 * <p>
30 c5369f1b leszek
 * User is able to create offscreen FBOs and both a) render to them b) use their COLOR0 attachment as
31 2ed1c692 leszek
 * an input texture. Attaching Depths and/or Stencils is also possible.
32 dedacd82 Leszek Koltunski
 */
33 7602a827 Leszek Koltunski
public class DistortedFramebuffer extends InternalOutputSurface
34 f6fb3c6d Leszek Koltunski
  {
35 bd3da5b2 Leszek Koltunski
36 f6fb3c6d Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
37 6537ba91 Leszek Koltunski
// Must be called from a thread holding OpenGL Context
38 f6fb3c6d Leszek Koltunski
39 341151fc Leszek Koltunski
  void create()
40 f6fb3c6d Leszek Koltunski
    {
41 5f35f1cb Leszek Koltunski
    if( mNumFBOs==DistortedLibrary.WAIT_FOR_FBO_QUEUE_SIZE )
42
      {
43
      // only now we know how many FBOs there should be
44
      mNumFBOs = DistortedLibrary.getQueueSize();
45
      allocateColor();
46
      allocateStuffDependantOnNumFBOS();
47
      }
48
49 9d845904 Leszek Koltunski
    //////////////////////////////////////////////////////////////
50
    // COLOR
51
52 c7da4e65 leszek
    if( mColorCreated==NOT_CREATED_YET )
53 7cf783cb Leszek Koltunski
      {
54 b7074bc6 Leszek Koltunski
      GLES30.glGenTextures( mNumFBOs*mNumColors, mColorH, 0);
55
      GLES30.glGenFramebuffers(mNumFBOs, mFBOH, 0);
56 9ed80185 Leszek Koltunski
57 9d845904 Leszek Koltunski
      for(int i=0; i<mNumFBOs; i++)
58 9ed80185 Leszek Koltunski
        {
59 b7074bc6 Leszek Koltunski
        GLES30.glBindFramebuffer(GLES30.GL_FRAMEBUFFER, mFBOH[i]);
60 9d845904 Leszek Koltunski
61
        for(int j=0; j<mNumColors; j++)
62
          {
63 b7074bc6 Leszek Koltunski
          GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, mColorH[i*mNumColors+j]);
64
          GLES30.glTexParameteri(GLES30.GL_TEXTURE_2D, GLES30.GL_TEXTURE_WRAP_S, GLES30.GL_REPEAT);
65
          GLES30.glTexParameteri(GLES30.GL_TEXTURE_2D, GLES30.GL_TEXTURE_WRAP_T, GLES30.GL_REPEAT);
66
          GLES30.glTexParameterf(GLES30.GL_TEXTURE_2D, GLES30.GL_TEXTURE_MIN_FILTER, GLES30.GL_NEAREST);
67
          GLES30.glTexParameterf(GLES30.GL_TEXTURE_2D, GLES30.GL_TEXTURE_MAG_FILTER, GLES30.GL_LINEAR);
68
          GLES30.glTexImage2D(GLES30.GL_TEXTURE_2D, 0, GLES30.GL_RGBA, mRealWidth, mRealHeight, 0, GLES30.GL_RGBA, GLES30.GL_UNSIGNED_BYTE, null);
69 9d845904 Leszek Koltunski
          }
70
71 b7074bc6 Leszek Koltunski
        GLES30.glFramebufferTexture2D(GLES30.GL_FRAMEBUFFER, GLES30.GL_COLOR_ATTACHMENT0, GLES30.GL_TEXTURE_2D, mColorH[i*mNumColors], 0);
72
        GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, 0);
73 9ed80185 Leszek Koltunski
        }
74 dedacd82 Leszek Koltunski
75 9d845904 Leszek Koltunski
      // TODO
76 c7da4e65 leszek
      mColorCreated = checkStatus("color");
77 b7074bc6 Leszek Koltunski
      GLES30.glBindFramebuffer(GLES30.GL_FRAMEBUFFER, 0);
78 7cf783cb Leszek Koltunski
      }
79 9d845904 Leszek Koltunski
80
    //////////////////////////////////////////////////////////////
81
    // DEPTH / STENCIL
82
83 89de975c leszek
    if( mDepthStencilCreated==NOT_CREATED_YET ) // we need to create a new DEPTH or STENCIL attachment
84 8c327653 Leszek Koltunski
      {
85 b7074bc6 Leszek Koltunski
      GLES30.glGenTextures(mNumFBOs, mDepthStencilH, 0);
86 9d845904 Leszek Koltunski
87
      for(int i=0; i<mNumFBOs; i++)
88 65e83759 Leszek Koltunski
        {
89 b7074bc6 Leszek Koltunski
        GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, mDepthStencilH[i]);
90
        GLES30.glTexParameteri(GLES30.GL_TEXTURE_2D, GLES30.GL_TEXTURE_WRAP_S, GLES30.GL_REPEAT);
91
        GLES30.glTexParameteri(GLES30.GL_TEXTURE_2D, GLES30.GL_TEXTURE_WRAP_T, GLES30.GL_REPEAT);
92
        GLES30.glTexParameteri(GLES30.GL_TEXTURE_2D, GLES30.GL_TEXTURE_MIN_FILTER, GLES30.GL_NEAREST);
93
        GLES30.glTexParameteri(GLES30.GL_TEXTURE_2D, GLES30.GL_TEXTURE_MAG_FILTER, GLES30.GL_NEAREST);
94 89de975c leszek
95 9d845904 Leszek Koltunski
        if (mDepthStencil == DEPTH_NO_STENCIL)
96
          {
97 b7074bc6 Leszek Koltunski
          GLES30.glTexImage2D(GLES30.GL_TEXTURE_2D, 0, GLES30.GL_DEPTH_COMPONENT, mRealWidth, mRealHeight, 0, GLES30.GL_DEPTH_COMPONENT, GLES30.GL_UNSIGNED_INT, null);
98 9d845904 Leszek Koltunski
          }
99
        else if (mDepthStencil == BOTH_DEPTH_STENCIL)
100
          {
101 b7074bc6 Leszek Koltunski
          GLES30.glTexImage2D(GLES30.GL_TEXTURE_2D, 0, GLES30.GL_DEPTH24_STENCIL8, mRealWidth, mRealHeight, 0, GLES30.GL_DEPTH_STENCIL, GLES30.GL_UNSIGNED_INT_24_8, null);
102 9d845904 Leszek Koltunski
          }
103
        }
104 b7074bc6 Leszek Koltunski
      GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, 0);
105 8c327653 Leszek Koltunski
106 9d845904 Leszek Koltunski
      for(int i=0; i<mNumFBOs; i++)
107 65e83759 Leszek Koltunski
        {
108 b7074bc6 Leszek Koltunski
        GLES30.glBindFramebuffer(GLES30.GL_FRAMEBUFFER, mFBOH[i]);
109 89de975c leszek
110 9d845904 Leszek Koltunski
        if (mDepthStencil == DEPTH_NO_STENCIL)
111
          {
112 b7074bc6 Leszek Koltunski
          GLES30.glFramebufferTexture2D(GLES30.GL_FRAMEBUFFER, GLES30.GL_DEPTH_ATTACHMENT, GLES30.GL_TEXTURE_2D, mDepthStencilH[i], 0);
113 9d845904 Leszek Koltunski
          }
114
        else if (mDepthStencil == BOTH_DEPTH_STENCIL)
115
          {
116 b7074bc6 Leszek Koltunski
          GLES30.glFramebufferTexture2D(GLES30.GL_FRAMEBUFFER, GLES30.GL_DEPTH_STENCIL_ATTACHMENT, GLES30.GL_TEXTURE_2D, mDepthStencilH[i], 0);
117 9d845904 Leszek Koltunski
          }
118
        }
119 89de975c leszek
120 9d845904 Leszek Koltunski
      // TODO
121 89de975c leszek
      mDepthStencilCreated = checkStatus("depth");
122 b7074bc6 Leszek Koltunski
      GLES30.glBindFramebuffer(GLES30.GL_FRAMEBUFFER, 0);
123 8c327653 Leszek Koltunski
      }
124 9d845904 Leszek Koltunski
125
    //////////////////////////////////////////////////////////////
126
    // DETACH
127
128
    // TODO
129 89de975c leszek
    if( mDepthStencilCreated==DONT_CREATE && mDepthStencilH[0]>0 ) // we need to detach and recreate the DEPTH attachment.
130 8c327653 Leszek Koltunski
      {
131 68f96a01 leszek
      // OpenGL ES 3.0.5 spec, chapter 4.4.2.4 :
132
      // "Note that the texture image is specifically not detached from any other framebuffer objects.
133
      //  Detaching the texture image from any other framebuffer objects is the responsibility of the application."
134 75f95f8d leszek
135 9d845904 Leszek Koltunski
      for(int i=0; i<mNumFBOs; i++)
136
        {
137 b7074bc6 Leszek Koltunski
        GLES30.glBindFramebuffer(GLES30.GL_FRAMEBUFFER, mFBOH[i]);
138
        GLES30.glFramebufferTexture2D(GLES30.GL_FRAMEBUFFER, GLES30.GL_DEPTH_ATTACHMENT, GLES30.GL_TEXTURE_2D, 0, 0);
139
        GLES30.glFramebufferTexture2D(GLES30.GL_FRAMEBUFFER, GLES30.GL_DEPTH_STENCIL_ATTACHMENT, GLES30.GL_TEXTURE_2D, 0, 0);
140 9d845904 Leszek Koltunski
        mDepthStencilH[i]=0;
141
        }
142
143 b7074bc6 Leszek Koltunski
      GLES30.glDeleteTextures(mNumFBOs, mDepthStencilH, 0);
144
      GLES30.glBindFramebuffer(GLES30.GL_FRAMEBUFFER, 0);
145 8c327653 Leszek Koltunski
      }
146 8337fa41 Leszek Koltunski
    }
147
148
///////////////////////////////////////////////////////////////////////////////////////////////////
149 9d845904 Leszek Koltunski
// TODO
150 8337fa41 Leszek Koltunski
151 c7da4e65 leszek
  private int checkStatus(String message)
152 8337fa41 Leszek Koltunski
    {
153 b7074bc6 Leszek Koltunski
    int status = GLES30.glCheckFramebufferStatus(GLES30.GL_FRAMEBUFFER);
154 8337fa41 Leszek Koltunski
155 b7074bc6 Leszek Koltunski
    if(status != GLES30.GL_FRAMEBUFFER_COMPLETE)
156 8337fa41 Leszek Koltunski
      {
157 b7074bc6 Leszek Koltunski
      Log.e("DistortedFramebuffer", "FRAMEBUFFER INCOMPLETE, "+message+" error="+status);
158 8337fa41 Leszek Koltunski
159 b7074bc6 Leszek Koltunski
      GLES30.glDeleteTextures(1, mColorH, 0);
160
      GLES30.glDeleteTextures(1, mDepthStencilH, 0);
161
      GLES30.glDeleteFramebuffers(1, mFBOH, 0);
162 c7da4e65 leszek
      mFBOH[0]= 0;
163 8337fa41 Leszek Koltunski
164 c7da4e65 leszek
      return FAILED_TO_CREATE;
165 8337fa41 Leszek Koltunski
      }
166 8c327653 Leszek Koltunski
167 c7da4e65 leszek
    return CREATED;
168 f6fb3c6d Leszek Koltunski
    }
169
170
///////////////////////////////////////////////////////////////////////////////////////////////////
171 6537ba91 Leszek Koltunski
// Must be called from a thread holding OpenGL Context
172 f6fb3c6d Leszek Koltunski
173 341151fc Leszek Koltunski
  void delete()
174 f6fb3c6d Leszek Koltunski
    {
175 c7da4e65 leszek
    if( mColorH[0]>0 )
176 e6cf7d50 Leszek Koltunski
      {
177 b7074bc6 Leszek Koltunski
      GLES30.glDeleteTextures(mNumFBOs*mNumColors, mColorH, 0);
178 c7da4e65 leszek
      mColorCreated = NOT_CREATED_YET;
179 9d845904 Leszek Koltunski
180
      for(int i=0; i<mNumFBOs*mNumColors; i++) mColorH[i] = 0;
181 5b959cc5 Leszek Koltunski
      }
182 bd3da5b2 Leszek Koltunski
183 5b959cc5 Leszek Koltunski
    if( mDepthStencilH[0]>0 )
184
      {
185 b7074bc6 Leszek Koltunski
      GLES30.glDeleteTextures(mNumFBOs, mDepthStencilH, 0);
186 5b959cc5 Leszek Koltunski
      mDepthStencilCreated = NOT_CREATED_YET;
187 9d845904 Leszek Koltunski
188
      for(int i=0; i<mNumFBOs; i++) mDepthStencilH[i] = 0;
189 e6cf7d50 Leszek Koltunski
      }
190 5b959cc5 Leszek Koltunski
191 22f537a5 Leszek Koltunski
    if( mNumFBOs>0 && mFBOH[0]>0 )
192
      {
193
      GLES30.glDeleteFramebuffers(mNumFBOs, mFBOH, 0);
194
      }
195
196
    for(int i=0; i<mNumFBOs; i++)
197
      {
198
      mFBOH[i] = 0;
199
      }
200 bd3da5b2 Leszek Koltunski
    }
201
202 4ebbb17a Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
203
// called from onDestroy(); mark OpenGL assets as 'not created'
204
205 341151fc Leszek Koltunski
  void recreate()
206 4ebbb17a Leszek Koltunski
    {
207 05ecc6fe Leszek Koltunski
    if( mColorCreated!=DONT_CREATE )
208
      {
209
      mColorCreated = NOT_CREATED_YET;
210
      mColorH[0] = 0;
211
      }
212 89de975c leszek
    if( mDepthStencilCreated!=DONT_CREATE )
213 05ecc6fe Leszek Koltunski
      {
214 89de975c leszek
      mDepthStencilCreated = NOT_CREATED_YET;
215
      mDepthStencilH[0] = 0;
216 05ecc6fe Leszek Koltunski
      }
217 22f537a5 Leszek Koltunski
    for(int i=0; i<mNumFBOs; i++)
218
      {
219
      mFBOH[i] = 0;
220
      }
221 4ebbb17a Leszek Koltunski
    }
222
223 9d845904 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
224
225
  boolean setAsInput(int fbo, int texture)
226
    {
227
    if( texture>=0 && texture<mNumColors && fbo>=0 && fbo<mNumFBOs && mColorH[mNumColors*fbo + texture]>0 )
228
      {
229 b7074bc6 Leszek Koltunski
      GLES30.glActiveTexture(GLES30.GL_TEXTURE0);
230
      GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, mColorH[mNumColors*fbo + texture]);
231 9d845904 Leszek Koltunski
      return true;
232
      }
233
234
    return false;
235
    }
236
237 af27df87 leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
238 fbe9542f Leszek Koltunski
// create a multi-framebuffer (1 object containing multiple FBOs)
239 af27df87 leszek
240 9ec374e8 Leszek Koltunski
  DistortedFramebuffer(int numfbos, int numcolors, int depthStencil, int type, int storage, int width, int height)
241 af27df87 leszek
    {
242 9ec374e8 Leszek Koltunski
    super(width,height,NOT_CREATED_YET,numfbos,numcolors,depthStencil,NOT_CREATED_YET, type, storage);
243 fbe9542f Leszek Koltunski
    markForCreation();
244 9d845904 Leszek Koltunski
    }
245
246
///////////////////////////////////////////////////////////////////////////////////////////////////
247 fbe9542f Leszek Koltunski
// create SYSTEM or TREE framebuffers (those are just like normal FBOs, just hold information
248
// that they were autocreated only for the Library's internal purposes (SYSTEM) or for using
249
// inside a Tree of DistortedNodes (TREE)
250
// SYSTEM surfaces do not get removed in onDestroy().
251 9d845904 Leszek Koltunski
252 fbe9542f Leszek Koltunski
  DistortedFramebuffer(int numcolors, int depthStencil, int type, int width, int height)
253 9d845904 Leszek Koltunski
    {
254 9ec374e8 Leszek Koltunski
    this(1,numcolors,depthStencil,type,STORAGE_PRIVATE,width,height);
255 af27df87 leszek
    }
256
257 f6fb3c6d Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
258
// PUBLIC API
259 dedacd82 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
260 cdd5e827 Leszek Koltunski
/**
261 9ed80185 Leszek Koltunski
 * Create new offscreen Framebuffer with configurable number of COLOR, DEPTH and STENCIL attachments.
262 cdd5e827 Leszek Koltunski
 *
263 9ed80185 Leszek Koltunski
 * @param width        Width of all the COLOR attachments.
264
 * @param height       Height of all the COLOR attachments.
265
 * @param numcolors    How many COLOR attachments to create?
266 89de975c leszek
 * @param depthStencil Add DEPTH or STENCIL attachment?
267 23eecbd9 Leszek Koltunski
 *                     Valid values: NO_DEPTH_NO_STENCIL, DEPTH_NO_STENCIL, BOTH_DEPTH_STENCIL.
268 cdd5e827 Leszek Koltunski
 */
269
  @SuppressWarnings("unused")
270 9ed80185 Leszek Koltunski
  public DistortedFramebuffer(int width, int height, int numcolors, int depthStencil)
271 cdd5e827 Leszek Koltunski
    {
272 9ec374e8 Leszek Koltunski
    this(1,numcolors,depthStencil,TYPE_USER,STORAGE_PRIVATE,width,height);
273 cdd5e827 Leszek Koltunski
    }
274
275 1dfc9074 leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
276
/**
277
 * Bind the underlying rectangle of pixels as a OpenGL Texture.
278
 *
279 5f7e4f2c Leszek Koltunski
 * @param texture The Texture number to bind (and thus read from).
280 1dfc9074 leszek
 * @return <code>true</code> if successful.
281
 */
282
  public boolean setAsInput(int texture)
283
    {
284 5f7e4f2c Leszek Koltunski
    if( texture>=0 && texture<mNumColors && mColorH[texture]>0 )
285 1dfc9074 leszek
      {
286 b7074bc6 Leszek Koltunski
      GLES30.glActiveTexture(GLES30.GL_TEXTURE0);
287
      GLES30.glBindTexture(GLES30.GL_TEXTURE_2D, mColorH[2*mCurrFBO+texture]);
288 1dfc9074 leszek
      return true;
289
      }
290
291
    return false;
292
    }
293
294
///////////////////////////////////////////////////////////////////////////////////////////////////
295 5f7e4f2c Leszek Koltunski
  /**
296
   * Attach the texture'th Texture to COLOR0 attachment.
297
   *
298
   * @param texture The Texture number to attach (and subsequently use to render to)
299
   */
300 1dfc9074 leszek
  public void bindForOutput(int texture)
301
    {
302 5f7e4f2c Leszek Koltunski
    if( texture>=0 && texture<mNumColors && mColorH[texture]>0 )
303 1dfc9074 leszek
      {
304 b7074bc6 Leszek Koltunski
      GLES30.glFramebufferTexture2D(GLES30.GL_FRAMEBUFFER, GLES30.GL_COLOR_ATTACHMENT0, GLES30.GL_TEXTURE_2D, mColorH[2*mCurrFBO+texture], 0);
305 1dfc9074 leszek
      }
306
    }
307
308 89de975c leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
309
/**
310
 * Enable.disable DEPTH and STENCIL buffers.
311
 *
312 23eecbd9 Leszek Koltunski
 * @param depthStencil Valid values: NO_DEPTH_NO_STENCIL, DEPTH_NO_STENCIL, BOTH_DEPTH_STENCIL.
313 89de975c leszek
 */
314
  public void enableDepthStencil(int depthStencil)
315
    {
316 65e83759 Leszek Koltunski
    if( depthStencil != mDepthStencil )
317 89de975c leszek
      {
318
      mDepthStencil = depthStencil;
319
320 65e83759 Leszek Koltunski
      if( depthStencil!= NO_DEPTH_NO_STENCIL && mDepthStencilCreated==DONT_CREATE )
321 89de975c leszek
        {
322 65e83759 Leszek Koltunski
        mDepthStencilCreated = NOT_CREATED_YET;
323
        markForCreation();
324 89de975c leszek
        }
325 65e83759 Leszek Koltunski
      if( depthStencil== NO_DEPTH_NO_STENCIL && mDepthStencilCreated!=DONT_CREATE )
326
        {
327
        mDepthStencilCreated = DONT_CREATE;
328
        markForCreation();
329
        }
330 89de975c leszek
      }
331
    }
332
333 d1e740c5 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
334
/**
335 09d4f4b1 Leszek Koltunski
 * Return the ID of the Texture (COLOR attachment 0) that's backing this FBO.
336
 * <p>
337
 * Catch: this will only work if the library has had time to actually create the texture. Remember
338
 * that the texture gets created only on first render, thus creating a Texture object and immediately
339
 * calling this method will return an invalid (negative) result.
340
 *
341 ab12f06b Leszek Koltunski
 * @return If there was not a single render between creation of the Object and calling this method on
342
 *         it, return a negative value. Otherwise, return ID of COLOR attachment 0.
343 d1e740c5 Leszek Koltunski
 */
344 09d4f4b1 Leszek Koltunski
  public int getTextureID()
345 d1e740c5 Leszek Koltunski
    {
346 133cbb2b Leszek Koltunski
    return mColorH[0];
347 8c327653 Leszek Koltunski
    }
348 cbb1de9d Leszek Koltunski
349
///////////////////////////////////////////////////////////////////////////////////////////////////
350
/**
351
 * Bind one of the underlying FBOs to GL_READ_FRAMEBUFFER.
352
 * Useful for a subsequent glReadBuffer / glReadPixels.
353
 *
354
 * @param fbo which of the underlying FBOs to bind.
355
 * @return <code>true</code> if successful.
356
 */
357
  public boolean setAsReadFramebuffer(int fbo)
358
    {
359
    if( fbo>=0 && fbo<mNumFBOs )
360
      {
361
      GLES30.glBindFramebuffer(GLES30.GL_READ_FRAMEBUFFER, mFBOH[fbo]);
362
      return true;
363
      }
364
365
    return false;
366
    }
367 f6fb3c6d Leszek Koltunski
  }