Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

glplatform.h 2.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. #ifndef __glplatform_h_
  2. #define __glplatform_h_
  3. /* $Id: glplatform.h 4585 2007-11-30 09:49:39Z markc $ */
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. /*
  8. ** License Applicability. Except to the extent portions of this file are
  9. ** made subject to an alternative license as permitted in the SGI Free
  10. ** Software License B, Version 1.0 (the "License"), the contents of this
  11. ** file are subject only to the provisions of the License. You may not use
  12. ** this file except in compliance with the License. You may obtain a copy
  13. ** of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
  14. ** Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
  15. **
  16. ** http://oss.sgi.com/projects/FreeB
  17. **
  18. ** Note that, as provided in the License, the Software is distributed on an
  19. ** "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
  20. ** DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
  21. ** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
  22. ** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
  23. **
  24. ** Original Code. The Original Code is: OpenGL Sample Implementation,
  25. ** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
  26. ** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
  27. ** Copyright in any portions created by third parties is as indicated
  28. ** elsewhere herein. All Rights Reserved.
  29. **
  30. ** Additional Notice Provisions: The application programming interfaces
  31. ** established by SGI in conjunction with the Original Code are The
  32. ** OpenGL(R) Graphics System: A Specification (Version 1.2.1), released
  33. ** April 1, 1999; The OpenGL(R) Graphics System Utility Library (Version
  34. ** 1.3), released November 4, 1998; and OpenGL(R) Graphics with the X
  35. ** Window System(R) (Version 1.3), released October 19, 1998. This software
  36. ** was created using the OpenGL(R) version 1.2.1 Sample Implementation
  37. ** published by SGI, but has not been independently verified as being
  38. ** compliant with the OpenGL(R) version 1.2.1 Specification.
  39. */
  40. /*-------------------------------------------------------------------------
  41. * Definition of GL_API and GL_APIENTRY
  42. *-----------------------------------------------------------------------*/
  43. #ifdef _WIN32
  44. # ifdef __GL_EXPORTS
  45. # define GL_API __declspec(dllexport)
  46. # else
  47. # define GL_API __declspec(dllimport)
  48. # endif
  49. # ifdef UNDER_CE
  50. # define GL_APIENTRY
  51. # else
  52. # define GL_APIENTRY __stdcall
  53. # endif
  54. #else
  55. # ifdef __GL_EXPORTS
  56. # define GL_API
  57. # else
  58. # define GL_API extern
  59. # endif
  60. # define GL_APIENTRY
  61. #endif
  62. #ifndef APIENTRY
  63. # define APIENTRY GL_APIENTRY
  64. #endif
  65. #ifdef __cplusplus
  66. }
  67. #endif
  68. #endif /* __glplatform_h_ */