mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-11 07:11:36 +00:00
Move noise function declations to tr_common.h
tr_noise.c is in renderercommon directory, so declare them in header there too.
This commit is contained in:
parent
eb7e554c46
commit
c7059fbf28
3 changed files with 2 additions and 6 deletions
|
@ -72,6 +72,8 @@ extern cvar_t *r_stereoEnabled;
|
|||
|
||||
qboolean R_GetModeInfo( int *width, int *height, float *windowAspect, int mode );
|
||||
|
||||
float R_NoiseGet4f( float x, float y, float z, float t );
|
||||
void R_NoiseInit( void );
|
||||
|
||||
/*
|
||||
====================================================================
|
||||
|
|
|
@ -1103,9 +1103,6 @@ extern cvar_t *r_marksOnTriangleMeshes;
|
|||
|
||||
//====================================================================
|
||||
|
||||
float R_NoiseGet4f( float x, float y, float z, float t );
|
||||
void R_NoiseInit( void );
|
||||
|
||||
void R_SwapBuffers( int );
|
||||
|
||||
void R_RenderView( viewParms_t *parms );
|
||||
|
|
|
@ -2105,9 +2105,6 @@ extern cvar_t *r_marksOnTriangleMeshes;
|
|||
|
||||
//====================================================================
|
||||
|
||||
float R_NoiseGet4f( float x, float y, float z, float t );
|
||||
void R_NoiseInit( void );
|
||||
|
||||
void R_SwapBuffers( int );
|
||||
|
||||
void R_RenderView( viewParms_t *parms );
|
||||
|
|
Loading…
Reference in a new issue