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.

basiccrveval.cc 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. ** License Applicability. Except to the extent portions of this file are
  3. ** made subject to an alternative license as permitted in the SGI Free
  4. ** Software License B, Version 1.1 (the "License"), the contents of this
  5. ** file are subject only to the provisions of the License. You may not use
  6. ** this file except in compliance with the License. You may obtain a copy
  7. ** of the License at Silicon Graphics, Inc., attn: Legal Services, 1600
  8. ** Amphitheatre Parkway, Mountain View, CA 94043-1351, or at:
  9. **
  10. ** http://oss.sgi.com/projects/FreeB
  11. **
  12. ** Note that, as provided in the License, the Software is distributed on an
  13. ** "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS
  14. ** DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND
  15. ** CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A
  16. ** PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
  17. **
  18. ** Original Code. The Original Code is: OpenGL Sample Implementation,
  19. ** Version 1.2.1, released January 26, 2000, developed by Silicon Graphics,
  20. ** Inc. The Original Code is Copyright (c) 1991-2000 Silicon Graphics, Inc.
  21. ** Copyright in any portions created by third parties is as indicated
  22. ** elsewhere herein. All Rights Reserved.
  23. **
  24. ** Additional Notice Provisions: The application programming interfaces
  25. ** established by SGI in conjunction with the Original Code are The
  26. ** OpenGL(R) Graphics System: A Specification (Version 1.2.1), released
  27. ** April 1, 1999; The OpenGL(R) Graphics System Utility Library (Version
  28. ** 1.3), released November 4, 1998; and OpenGL(R) Graphics with the X
  29. ** Window System(R) (Version 1.3), released October 19, 1998. This software
  30. ** was created using the OpenGL(R) version 1.2.1 Sample Implementation
  31. ** published by SGI, but has not been independently verified as being
  32. ** compliant with the OpenGL(R) version 1.2.1 Specification.
  33. */
  34. /*
  35. * basiccrveval.c++
  36. *
  37. * $Date: 2001/03/17 00:25:40 $ $Revision: 1.1 $
  38. * $Header: /home/krh/git/sync/mesa-cvs-repo/Mesa/src/glu/sgi/libnurbs/internals/basiccrveval.cc,v 1.1 2001/03/17 00:25:40 brianp Exp $
  39. */
  40. #include "mystdio.h"
  41. #include "types.h"
  42. #include "basiccrveval.h"
  43. void
  44. BasicCurveEvaluator::domain1f( REAL, REAL )
  45. {
  46. #ifndef NDEBUG
  47. dprintf( "domain1f\n" );
  48. #endif
  49. }
  50. void
  51. BasicCurveEvaluator::range1f( long type, REAL *, REAL * )
  52. {
  53. #ifndef NDEBUG
  54. dprintf( "range1f\n" );
  55. #endif
  56. }
  57. void
  58. BasicCurveEvaluator::enable( long )
  59. {
  60. #ifndef NDEBUG
  61. dprintf( "enable\n" );
  62. #endif
  63. }
  64. void
  65. BasicCurveEvaluator::disable( long )
  66. {
  67. #ifndef NDEBUG
  68. dprintf( "disable\n" );
  69. #endif
  70. }
  71. void
  72. BasicCurveEvaluator::bgnmap1f( long )
  73. {
  74. #ifndef NDEBUG
  75. dprintf( "bgnmap1f\n" );
  76. #endif
  77. }
  78. void
  79. BasicCurveEvaluator::map1f( long, REAL, REAL, long, long, REAL * )
  80. {
  81. #ifndef NDEBUG
  82. dprintf( "map1f\n" );
  83. #endif
  84. }
  85. void
  86. BasicCurveEvaluator::mapgrid1f( long, REAL, REAL )
  87. {
  88. #ifndef NDEBUG
  89. dprintf( "mapgrid1f\n" );
  90. #endif
  91. }
  92. void
  93. BasicCurveEvaluator::mapmesh1f( long, long, long )
  94. {
  95. #ifndef NDEBUG
  96. dprintf( "mapmesh1f\n" );
  97. #endif
  98. }
  99. void
  100. BasicCurveEvaluator::evalcoord1f( long, REAL )
  101. {
  102. #ifndef NDEBUG
  103. dprintf( "evalcoord1f\n" );
  104. #endif
  105. }
  106. void
  107. BasicCurveEvaluator::endmap1f( void )
  108. {
  109. #ifndef NDEBUG
  110. dprintf( "endmap1f\n" );
  111. #endif
  112. }
  113. void
  114. BasicCurveEvaluator::bgnline( void )
  115. {
  116. #ifndef NDEBUG
  117. dprintf( "bgnline\n" );
  118. #endif
  119. }
  120. void
  121. BasicCurveEvaluator::endline( void )
  122. {
  123. #ifndef NDEBUG
  124. dprintf( "endline\n" );
  125. #endif
  126. }