summaryrefslogtreecommitdiff
path: root/src/mesa/main/buffers.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-02-26 17:16:12 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-02-26 17:16:12 +0000
commit67742383e87734130e35d08d7c63c75b9adcf655 (patch)
treeb912c651cd3ba5f8a59f047cc9ab01dd60c17b95 /src/mesa/main/buffers.h
parent4932ba28adc2694161ec3fa7964cd76e3742182a (diff)
Rename _mesa_update_buffers() to _mesa_update_draw_buffer_bounds() and do
additional checks. Replace _mesa_init_buffers() with _mesa_init_scissor() and _mesa_init_multisample().
Diffstat (limited to 'src/mesa/main/buffers.h')
-rw-r--r--src/mesa/main/buffers.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/mesa/main/buffers.h b/src/mesa/main/buffers.h
index f9369864b6..c436e6bf51 100644
--- a/src/mesa/main/buffers.h
+++ b/src/mesa/main/buffers.h
@@ -5,9 +5,9 @@
/*
* Mesa 3-D graphics library
- * Version: 3.5
+ * Version: 6.3
*
- * 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"),
@@ -65,9 +65,13 @@ extern void GLAPIENTRY
_mesa_SampleCoverageARB(GLclampf value, GLboolean invert);
extern void
-_mesa_init_buffers( GLcontext * ctx );
+_mesa_update_draw_buffer_bounds(GLcontext *ctx);
extern void
-_mesa_update_buffers( GLcontext *ctx );
+_mesa_init_scissor(GLcontext *ctx);
+
+extern void
+_mesa_init_multisample(GLcontext *ctx);
+
#endif