diff options
author | Philippe Houdoin <phoudoin@freedesktop.org> | 2004-08-14 10:37:03 +0000 |
---|---|---|
committer | Philippe Houdoin <phoudoin@freedesktop.org> | 2004-08-14 10:37:03 +0000 |
commit | bba512b75bdc3bc27cecb17b7664030c66652996 (patch) | |
tree | 7960a495be8c53126a9e7432b970fe3b2fc63451 /src/glut/beos/glut_swidth.cpp | |
parent | a041e62418a72f0fd379e50263e1c9d2e6c6bb55 (diff) |
Replaced the .cpp-ized (for build issue) common GLUT source files by their
standard .c version.
Remove outdated Makefile.orig.
Diffstat (limited to 'src/glut/beos/glut_swidth.cpp')
-rw-r--r-- | src/glut/beos/glut_swidth.cpp | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/src/glut/beos/glut_swidth.cpp b/src/glut/beos/glut_swidth.cpp deleted file mode 100644 index 228c8fc255..0000000000 --- a/src/glut/beos/glut_swidth.cpp +++ /dev/null @@ -1,59 +0,0 @@ - -/* Copyright (c) Mark J. Kilgard, 1995. */ - -/* This program is freely distributable without licensing fees - and is provided without guarantee or warrantee expressed or - implied. This program is -not- in the public domain. */ - -#include <GL/glut.h> -#include "glutint.h" -#include "glutstroke.h" - -/* CENTRY */ -int APIENTRY -glutStrokeWidth(GLUTstrokeFont font, int c) -{ - StrokeFontPtr fontinfo; - const StrokeCharRec *ch; - -#if defined(WIN32) - fontinfo = (StrokeFontPtr) __glutFont(font); -#else - fontinfo = (StrokeFontPtr) font; -#endif - - if (c < 0 || c >= fontinfo->num_chars) - return 0; - ch = &(fontinfo->ch[c]); - if (ch) - return (int)ch->right; - else - return 0; -} - -int APIENTRY -glutStrokeLength(GLUTstrokeFont font, const char *string) -{ - int c, length; - StrokeFontPtr fontinfo; - const StrokeCharRec *ch; - -#if defined(WIN32) - fontinfo = (StrokeFontPtr) __glutFont(font); -#else - fontinfo = (StrokeFontPtr) font; -#endif - - length = 0; - for (; *string != '\0'; string++) { - c = *string; - if (c >= 0 && c < fontinfo->num_chars) { - ch = &(fontinfo->ch[c]); - if (ch) - length += (int)ch->right; - } - } - return length; -} - -/* ENDCENTRY */ |