Project

General

Profile

« Previous | Next » 

Revision 46b572b5

Added by Leszek Koltunski about 5 years ago

Correct the Legal notice.

View differences:

src/main/java/org/distorted/library/main/InternalOutputSurface.java
1 1
///////////////////////////////////////////////////////////////////////////////////////////////////
2 2
// Copyright 2016 Leszek Koltunski                                                               //
3 3
//                                                                                               //
4
// This file is part of DistortedLibrary.                                                               //
4
// This file is part of Distorted.                                                               //
5 5
//                                                                                               //
6
// DistortedLibrary is free software: you can redistribute it and/or modify                             //
6
// Distorted is free software: you can redistribute it and/or modify                             //
7 7
// it under the terms of the GNU General Public License as published by                          //
8 8
// the Free Software Foundation, either version 2 of the License, or                             //
9 9
// (at your option) any later version.                                                           //
10 10
//                                                                                               //
11
// DistortedLibrary is distributed in the hope that it will be useful,                                  //
11
// Distorted is distributed in the hope that it will be useful,                                  //
12 12
// but WITHOUT ANY WARRANTY; without even the implied warranty of                                //
13 13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                 //
14 14
// GNU General Public License for more details.                                                  //
15 15
//                                                                                               //
16 16
// You should have received a copy of the GNU General Public License                             //
17
// along with DistortedLibrary.  If not, see <http://www.gnu.org/licenses/>.                            //
17
// along with Distorted.  If not, see <http://www.gnu.org/licenses/>.                            //
18 18
///////////////////////////////////////////////////////////////////////////////////////////////////
19 19

  
20 20
package org.distorted.library.main;
......
38 38
  public static final int DEPTH_NO_STENCIL    = 1;
39 39
  public static final int BOTH_DEPTH_STENCIL  = 2;
40 40

  
41
  float mFOV, mDistance, mNear;
41
  float mFOV, mDistance, mNear, mMipmap;
42 42
  float[] mProjectionMatrix;
43

  
44
  int mDepthStencilCreated;
45
  int mDepthStencil;
46
  int[] mDepthStencilH;
47
  int[] mFBOH;
48

  
49
  float mMipmap;
50

  
51
  int mRealWidth;   // the Surface can be backed up with a texture that is
52
  int mRealHeight;  // larger than the viewport we have to it.
53
                    // mWidth,mHeight are the sizes of the Viewport, those -
54
                    // sizes of the backing up texture.
55

  
43
  int mDepthStencilCreated, mDepthStencil;
44
  int[] mDepthStencilH, mFBOH;
45
  int mRealWidth;   // the Surface can be backed up by a texture larger than the viewport we have to it.
46
  int mRealHeight;  // mWidth,mHeight are the sizes of the Viewport, those - sizes of the backing up texture.
56 47
  int mCurrFBO;     // internal current FBO (see DistortedLibrary.FBO_QUEUE_SIZE)
57 48

  
58 49
  private static DistortedFramebuffer[] mBuffer=null; // Global buffers used for postprocessing.

Also available in: Unified diff