comment unused vars
This commit is contained in:
@@ -810,9 +810,9 @@ int PLX_antialias_buffer(float *buf, int buf_x, int buf_y) {
|
||||
buf[i] *= 0.5f;
|
||||
}
|
||||
#endif
|
||||
buf_x = buf_x;
|
||||
buf_y = buf_y;
|
||||
buf[0] = buf[0];
|
||||
(void)buf_x;
|
||||
(void)buf_y;
|
||||
(void)buf;
|
||||
return 1;
|
||||
#else
|
||||
/*XXX - TODO: THIS IS NOT FINAL CODE - IT DOES NOT WORK - DO NOT ENABLE IT */
|
||||
|
@@ -51,7 +51,7 @@ public:
|
||||
virtual void NextFrame();
|
||||
virtual void HookEscape();
|
||||
private:
|
||||
short m_exit_key;
|
||||
/* short m_exit_key; */ /* UNUSED */
|
||||
|
||||
|
||||
#ifdef WITH_CXX_GUARDEDALLOC
|
||||
|
@@ -57,14 +57,14 @@ private:
|
||||
|
||||
float canvascoord[4];
|
||||
float textureoffsets[18];
|
||||
float view[4];
|
||||
/* float view[4]; */ /* UNUSED */
|
||||
/* texname[0] contains render to texture, texname[1] contains depth texture, texname[2] contains luminance texture*/
|
||||
unsigned int texname[3];
|
||||
int texturewidth;
|
||||
int textureheight;
|
||||
int canvaswidth;
|
||||
int canvasheight;
|
||||
int numberoffilters;
|
||||
/* int numberoffilters; */ /* UNUSED */
|
||||
/* bit 0: enable/disable depth texture
|
||||
* bit 1: enable/disable luminance texture*/
|
||||
short texflag[MAX_RENDER_PASS];
|
||||
|
@@ -57,7 +57,7 @@ class RAS_Deformer;
|
||||
class RAS_MeshObject
|
||||
{
|
||||
private:
|
||||
unsigned int m_debugcolor;
|
||||
/* unsigned int m_debugcolor; */ /* UNUSED */
|
||||
|
||||
bool m_bModified;
|
||||
bool m_bMeshModified;
|
||||
|
Reference in New Issue
Block a user