Project

General

Profile

« Previous | Next » 

Revision e8c81a8e

Added by Leszek Koltunski almost 8 years ago

Cleanup, consistent variable names, minor details.

View differences:

src/main/java/org/distorted/library/Distorted.java
38 38
public class Distorted 
39 39
{
40 40
  /**
41
   * When creating an instance of a DistortedBitmap from another instance, do not clone anything.
41
   * When creating an instance of a DistortedObject from another instance, do not clone anything.
42 42
   * Used in the copy constructor.
43 43
   */
44 44
  public static final int CLONE_NOTHING = 0x0;
......
297 297
    mFOV = fov;
298 298
   
299 299
    if( mProjection.width>0 && mProjection.height>0 )
300
      mProjection.onSurfaceChanged( (int)mProjection.width, (int)mProjection.height);
300
      mProjection.onSurfaceChanged( mProjection.width, mProjection.height);
301 301
    }
302 302
  
303 303
///////////////////////////////////////////////////////////////////////////////////////////////////

Also available in: Unified diff