Fix pow <small> and a very stypid bug with dummy srcs(0 equals to tmp0.x)</small...
[mesa.git] / src / mesa / main / buffers.h
index 83e1b4825119ce9c0732b883c1ad6aa24afed288..547fb28886e250295e2b1cdedb60f44c050842c3 100644 (file)
@@ -5,9 +5,9 @@
 
 /*
  * Mesa 3-D graphics library
- * Version:  3.5
+ * Version:  6.5
  *
- * Copyright (C) 1999-2001  Brian Paul   All Rights Reserved.
+ * Copyright (C) 1999-2005  Brian Paul   All Rights Reserved.
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
@@ -49,6 +49,13 @@ _mesa_Clear( GLbitfield mask );
 extern void GLAPIENTRY
 _mesa_DrawBuffer( GLenum mode );
 
+extern void GLAPIENTRY
+_mesa_DrawBuffersARB(GLsizei n, const GLenum *buffers);
+
+extern void
+_mesa_drawbuffers(GLcontext *ctx, GLsizei n, const GLenum *buffers,
+                  const GLbitfield *destMask);
+
 extern void GLAPIENTRY
 _mesa_ReadBuffer( GLenum mode );
 
@@ -62,9 +69,13 @@ extern void GLAPIENTRY
 _mesa_SampleCoverageARB(GLclampf value, GLboolean invert);
 
 extern void 
-_mesa_init_buffers( GLcontext * ctx );
+_mesa_init_scissor(GLcontext *ctx);
 
 extern void 
-_mesa_update_buffers( GLcontext *ctx );
+_mesa_init_multisample(GLcontext *ctx);
+
+extern void _mesa_set_scissor( GLcontext *ctx, 
+                              GLint x, GLint y, GLsizei width, GLsizei height );
+
 
 #endif