const
This commit is contained in:
@@ -355,7 +355,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Obtain the current matrix at the top of the stack
|
// Obtain the current matrix at the top of the stack
|
||||||
const RageMatrix* GetTop() { return &stack.back(); }
|
const RageMatrix* GetTop() const { return &stack.back(); }
|
||||||
void SetTop( const RageMatrix &m ) { stack.back() = m; }
|
void SetTop( const RageMatrix &m ) { stack.back() = m; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -329,11 +329,11 @@ protected:
|
|||||||
void UpdateCentering();
|
void UpdateCentering();
|
||||||
|
|
||||||
// Called by the RageDisplay derivitives
|
// Called by the RageDisplay derivitives
|
||||||
const RageMatrix* GetCentering();
|
const RageMatrix* GetCentering() const;
|
||||||
const RageMatrix* GetProjectionTop();
|
const RageMatrix* GetProjectionTop() const;
|
||||||
const RageMatrix* GetViewTop();
|
const RageMatrix* GetViewTop() const;
|
||||||
const RageMatrix* GetWorldTop();
|
const RageMatrix* GetWorldTop() const;
|
||||||
const RageMatrix* GetTextureTop();
|
const RageMatrix* GetTextureTop() const;
|
||||||
|
|
||||||
//
|
//
|
||||||
// To limit the framerate, call FrameLimitBeforeVsync before waiting
|
// To limit the framerate, call FrameLimitBeforeVsync before waiting
|
||||||
|
|||||||
Reference in New Issue
Block a user