Fix the last remaining link problems.
This commit is contained in:
parent
88b8990409
commit
b2bc573205
2 changed files with 5 additions and 0 deletions
|
@ -135,6 +135,10 @@ void fgRenderFrame() {
|
|||
globals->get_renderer()->update(delta_time_sec);
|
||||
}
|
||||
|
||||
void fgReshape(int width, int height) {
|
||||
globals->get_renderer()->resize(width,height);
|
||||
}
|
||||
|
||||
void
|
||||
FGRenderer::build_states( void ) {
|
||||
default_state = new ssgSimpleState;
|
||||
|
|
|
@ -15,6 +15,7 @@ extern glPointParameterfvProc glPointParameterfvPtr;
|
|||
extern bool glPointParameterIsSupported;
|
||||
|
||||
void fgRenderFrame();
|
||||
void fgReshape(int width, int height);
|
||||
|
||||
class FGRenderer {
|
||||
|
||||
|
|
Loading…
Reference in a new issue