Project

General

Profile

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

library / src / main / java / org / distorted / library / main / InternalSurface.java @ d58b50e7

1 c5369f1b leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2016 Leszek Koltunski                                                               //
3
//                                                                                               //
4 46b572b5 Leszek Koltunski
// This file is part of Distorted.                                                               //
5 c5369f1b leszek
//                                                                                               //
6 46b572b5 Leszek Koltunski
// Distorted is free software: you can redistribute it and/or modify                             //
7 c5369f1b leszek
// it under the terms of the GNU General Public License as published by                          //
8
// the Free Software Foundation, either version 2 of the License, or                             //
9
// (at your option) any later version.                                                           //
10
//                                                                                               //
11 46b572b5 Leszek Koltunski
// Distorted is distributed in the hope that it will be useful,                                  //
12 c5369f1b leszek
// but WITHOUT ANY WARRANTY; without even the implied warranty of                                //
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                 //
14
// GNU General Public License for more details.                                                  //
15
//                                                                                               //
16
// You should have received a copy of the GNU General Public License                             //
17 46b572b5 Leszek Koltunski
// along with Distorted.  If not, see <http://www.gnu.org/licenses/>.                            //
18 c5369f1b leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
19
20 fe82a979 Leszek Koltunski
package org.distorted.library.main;
21 c5369f1b leszek
22 12f9e4bb Leszek Koltunski
import android.opengl.GLES31;
23 af4cc5db Leszek Koltunski
24 12f9e4bb Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
25 4bb94a7d Leszek Koltunski
26
abstract class InternalSurface extends InternalObject
27 226144d0 leszek
{
28 c7da4e65 leszek
  int mColorCreated;
29 9ed80185 Leszek Koltunski
  int mNumColors;
30 9d845904 Leszek Koltunski
  int mNumFBOs;
31 9ed80185 Leszek Koltunski
  int[] mColorH;
32 af4cc5db Leszek Koltunski
33 af27df87 leszek
///////////////////////////////////////////////////////////////////////////////////////////////////
34
35 d58b50e7 Leszek Koltunski
  InternalSurface(int create, int numfbos, int numcolors, int type)
36 af4cc5db Leszek Koltunski
    {
37 ccd98f1c Leszek Koltunski
    super(type);
38
39 9d845904 Leszek Koltunski
    mNumFBOs      = numfbos;
40 9ed80185 Leszek Koltunski
    mNumColors    = numcolors;
41 c7da4e65 leszek
    mColorCreated = create;
42 9ed80185 Leszek Koltunski
43 9d845904 Leszek Koltunski
    int total = mNumFBOs*mNumColors;
44
45
    if( total>0 )
46 9ed80185 Leszek Koltunski
      {
47 9d845904 Leszek Koltunski
      mColorH = new int[total];
48
      for( int i=0; i<total; i++ )  mColorH[i] = 0;
49 9ed80185 Leszek Koltunski
      }
50 af4cc5db Leszek Koltunski
    }
51
52 f28fffc2 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
53 226144d0 leszek
// debugging only
54 f28fffc2 Leszek Koltunski
55 226144d0 leszek
  String printDetails()
56 f28fffc2 Leszek Koltunski
    {
57 d58b50e7 Leszek Koltunski
    return getClass().getSimpleName();
58 f28fffc2 Leszek Koltunski
    }
59
60 af4cc5db Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
61
// PUBLIC API
62 12f9e4bb Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
63
/**
64
 * Bind the underlying rectangle of pixels as a OpenGL Texture.
65
 *
66
 * @return <code>true</code> if successful.
67
 */
68
  public boolean setAsInput()
69
    {
70
    if( mColorH[0]>0 )
71
      {
72
      GLES31.glActiveTexture(GLES31.GL_TEXTURE0);
73
      GLES31.glBindTexture(GLES31.GL_TEXTURE_2D, mColorH[0]);
74
      return true;
75
      }
76
77
    return false;
78
    }
79 226144d0 leszek
}