home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mesa5.zip / mesa5src.zip / MesaDLL / dispatch.cpp < prev    next >
C/C++ Source or Header  |  2002-10-24  |  3KB  |  92 lines

  1. /* $Id: dispatch.c,v 1.28 2002/10/24 23:57:20 brianp Exp $ */
  2.  
  3. /*
  4.  * Mesa 3-D graphics library
  5.  * Version:  4.1
  6.  *
  7.  * Copyright (C) 1999-2001  Brian Paul   All Rights Reserved.
  8.  *
  9.  * Permission is hereby granted, free of charge, to any person obtaining a
  10.  * copy of this software and associated documentation files (the "Software"),
  11.  * to deal in the Software without restriction, including without limitation
  12.  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  13.  * and/or sell copies of the Software, and to permit persons to whom the
  14.  * Software is furnished to do so, subject to the following conditions:
  15.  *
  16.  * The above copyright notice and this permission notice shall be included
  17.  * in all copies or substantial portions of the Software.
  18.  *
  19.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  20.  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21.  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
  22.  * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  23.  * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  24.  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  25.  */
  26.  
  27.  
  28. /*
  29.  * This file generates all the gl* function entyrpoints.
  30.  * But if we're using X86-optimized dispatch (X86/glapi_x86.S) then
  31.  * we don't use this code.
  32.  *
  33.  * NOTE: This file should _not_ be used when compiling Mesa for a DRI-
  34.  * based device driver.
  35.  *
  36.  */
  37.  
  38.  
  39. #include "glheader.h"
  40. #include "glapi.h"
  41. #include "glapitable.h"
  42. #include "glthread.h"
  43.  
  44.  
  45. #if !(defined(USE_X86_ASM) || defined(USE_SPARC_ASM))
  46.  
  47. #if defined(WIN32)
  48. #define KEYWORD1 GLAPI
  49. #else
  50. #define KEYWORD1
  51. #endif
  52.  
  53. #define KEYWORD2 GLAPIENTRY
  54.  
  55. #if defined(USE_MGL_NAMESPACE)
  56. #define NAME(func)  mgl##func
  57. #else
  58. #define NAME(func)  gl##func
  59. #endif
  60.  
  61.  
  62. #if 0  /* Use this to log GL calls to stdout (for DEBUG only!) */
  63.  
  64. #define F stdout
  65. #define DISPATCH(FUNC, ARGS, MESSAGE)        \
  66.    fprintf MESSAGE;                \
  67.    (_glapi_Dispatch->FUNC) ARGS;
  68.  
  69. #define RETURN_DISPATCH(FUNC, ARGS, MESSAGE)     \
  70.    fprintf MESSAGE;                \
  71.    return (_glapi_Dispatch->FUNC) ARGS
  72.  
  73. #else
  74.  
  75. #define DISPATCH(FUNC, ARGS, MESSAGE)        \
  76.    (_glapi_Dispatch->FUNC) ARGS;
  77.  
  78. #define RETURN_DISPATCH(FUNC, ARGS, MESSAGE)     \
  79.    return (_glapi_Dispatch->FUNC) ARGS
  80.  
  81. #endif /* logging */
  82.  
  83.  
  84. #ifndef GLAPIENTRY
  85. #define GLAPIENTRY
  86. #endif
  87.  
  88. #include "glapitemp.h"
  89.  
  90.  
  91. #endif /* USE_X86_ASM */
  92.