diff options
author | Brian Paul <[email protected]> | 2010-02-19 08:12:31 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-02-19 08:12:31 -0700 |
commit | 2240ba10f30315410bcff77e372ee71664ac4453 (patch) | |
tree | 6fbdf46df8c5081cefafcf1ab88d58ad7bffd609 /src/mesa/main | |
parent | e197de56cdb86835f1437688a9161cd909792d80 (diff) |
mesa: replace old MEMSET macro with memset
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/eval.c | 4 | ||||
-rw-r--r-- | src/mesa/main/imports.h | 3 | ||||
-rw-r--r-- | src/mesa/main/polygon.c | 2 |
3 files changed, 3 insertions, 6 deletions
diff --git a/src/mesa/main/eval.c b/src/mesa/main/eval.c index 95d6e231879..58eb59b13c0 100644 --- a/src/mesa/main/eval.c +++ b/src/mesa/main/eval.c @@ -894,7 +894,7 @@ void _mesa_init_eval( GLcontext *ctx ) ctx->Eval.Map1TextureCoord4 = GL_FALSE; ctx->Eval.Map1Vertex3 = GL_FALSE; ctx->Eval.Map1Vertex4 = GL_FALSE; - MEMSET(ctx->Eval.Map1Attrib, 0, sizeof(ctx->Eval.Map1Attrib)); + memset(ctx->Eval.Map1Attrib, 0, sizeof(ctx->Eval.Map1Attrib)); ctx->Eval.Map2Color4 = GL_FALSE; ctx->Eval.Map2Index = GL_FALSE; ctx->Eval.Map2Normal = GL_FALSE; @@ -904,7 +904,7 @@ void _mesa_init_eval( GLcontext *ctx ) ctx->Eval.Map2TextureCoord4 = GL_FALSE; ctx->Eval.Map2Vertex3 = GL_FALSE; ctx->Eval.Map2Vertex4 = GL_FALSE; - MEMSET(ctx->Eval.Map2Attrib, 0, sizeof(ctx->Eval.Map2Attrib)); + memset(ctx->Eval.Map2Attrib, 0, sizeof(ctx->Eval.Map2Attrib)); ctx->Eval.AutoNormal = GL_FALSE; ctx->Eval.MapGrid1un = 1; ctx->Eval.MapGrid1u1 = 0.0; diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index c4e28df0513..048ae912c9d 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -71,9 +71,6 @@ extern "C" { /** Free aligned memory */ #define ALIGN_FREE(PTR) _mesa_align_free(PTR) -/** Set \p N bytes in \p DST to \p VAL */ -#define MEMSET( DST, VAL, N ) memset(DST, VAL, N) - /*@}*/ diff --git a/src/mesa/main/polygon.c b/src/mesa/main/polygon.c index dcde6758c3f..30e4a606bb7 100644 --- a/src/mesa/main/polygon.c +++ b/src/mesa/main/polygon.c @@ -315,7 +315,7 @@ void _mesa_init_polygon( GLcontext * ctx ) /* Polygon Stipple group */ - MEMSET( ctx->PolygonStipple, 0xff, 32*sizeof(GLuint) ); + memset( ctx->PolygonStipple, 0xff, 32*sizeof(GLuint) ); } /*@}*/ |