diff options
author | Brian Paul <[email protected]> | 2008-06-21 10:34:38 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-06-21 10:34:38 -0600 |
commit | 5ee7b7912c1fe7b09d13ae385088e4281b62eba6 (patch) | |
tree | 4728079f9da95a01c9f7ecb5e899a8b77a8e25a7 /src/mesa/drivers/dri/nouveau | |
parent | 055ab81920e7299ec4fce8f9908c88c001050a92 (diff) |
replace __inline and __inline__ with INLINE macro
Diffstat (limited to 'src/mesa/drivers/dri/nouveau')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nouveau_state.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_state.c b/src/mesa/drivers/dri/nouveau/nouveau_state.c index e2f9fb869a1..1eb6069e34c 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_state.c +++ b/src/mesa/drivers/dri/nouveau/nouveau_state.c @@ -38,9 +38,9 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. #include "mtypes.h" #include "colormac.h" -static __inline__ GLuint nouveauPackColor(GLuint format, - GLubyte r, GLubyte g, - GLubyte b, GLubyte a) +static INLINE GLuint nouveauPackColor(GLuint format, + GLubyte r, GLubyte g, + GLubyte b, GLubyte a) { switch (format) { case 2: |