Commit 4dae107d authored by Maciej Suminski's avatar Maciej Suminski
Browse files

Alternative depth range in OpenGL GAL.

parent 09f2af3c
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -249,6 +249,6 @@ VECTOR2D GAL::GetGridPoint( const VECTOR2D& aPoint ) const
                     round( ( aPoint.y - gridOffset.y ) / gridSize.y ) * gridSize.y + gridOffset.y );
                     round( ( aPoint.y - gridOffset.y ) / gridSize.y ) * gridSize.y + gridOffset.y );
}
}


const int GAL::MIN_DEPTH = -256;
const int GAL::MIN_DEPTH = -1024;
const int GAL::MAX_DEPTH = 255;
const int GAL::MAX_DEPTH = 1023;
const int GAL::GRID_DEPTH = MAX_DEPTH - 1;
const int GAL::GRID_DEPTH = MAX_DEPTH - 1;
+1 −1
Original line number Original line Diff line number Diff line
@@ -42,7 +42,7 @@ using namespace KIGFX;
// Prototypes
// Prototypes
void InitTesselatorCallbacks( GLUtesselator* aTesselator );
void InitTesselatorCallbacks( GLUtesselator* aTesselator );


const int glAttributes[] = { WX_GL_RGBA, WX_GL_DOUBLEBUFFER, WX_GL_DEPTH_SIZE, 8, 0 };
const int glAttributes[] = { WX_GL_RGBA, WX_GL_DOUBLEBUFFER, WX_GL_DEPTH_SIZE, 24, 0 };


wxGLContext* OPENGL_GAL::glContext = NULL;
wxGLContext* OPENGL_GAL::glContext = NULL;


+1 −1
Original line number Original line Diff line number Diff line
@@ -530,7 +530,7 @@ public:


    const BOX2I CalculateExtents() ;
    const BOX2I CalculateExtents() ;


    static const int VIEW_MAX_LAYERS = 256;      ///< maximum number of layers that may be shown
    static const int VIEW_MAX_LAYERS = 128;      ///< maximum number of layers that may be shown


private:
private:
    struct VIEW_LAYER
    struct VIEW_LAYER