Inline get_size as an interim measure to get rid of function call overhead.
authorMichel Dänzer <michel@daenzer.net>
Mon, 1 Mar 2004 13:02:29 +0000 (13:02 +0000)
committerMichel Dänzer <michel@daenzer.net>
Mon, 1 Mar 2004 13:02:29 +0000 (13:02 +0000)
src/mesa/tnl/t_save_playback.c
src/mesa/tnl/t_vtx_exec.c

index 8d353b3f7b48622d79c5b8844730bb78e04105df..264748e9b115a44267d6b406af3572c85831a14c 100644 (file)
@@ -37,7 +37,7 @@
 #include "t_save_api.h"
 #include "t_vtx_api.h"
 
-static GLint get_size( const GLfloat *f )
+static INLINE GLint get_size( const GLfloat *f )
 {
    if (f[3] != 1.0) return 4;
    if (f[2] != 0.0) return 3;
index 4a36ed917f9cf505f65d1701282bb2124d42a6ae..6925850f06a5293d8c5658057e40d4203693f1b7 100644 (file)
@@ -93,7 +93,7 @@ GLboolean *_tnl_import_current_edgeflag( GLcontext *ctx,
    return ef;
 }
 
-static GLint get_size( const GLfloat *f )
+static INLINE GLint get_size( const GLfloat *f )
 {
    if (f[3] != 1.0) return 4;
    if (f[2] != 0.0) return 3;