1c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul/*
2c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * Mesa 3-D graphics library
3c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * Version:  7.1
4c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul *
5c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * Copyright (C) 1999-2007  Brian Paul   All Rights Reserved.
6c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul *
7c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * Permission is hereby granted, free of charge, to any person obtaining a
8c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * copy of this software and associated documentation files (the "Software"),
9c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * to deal in the Software without restriction, including without limitation
10c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * and/or sell copies of the Software, and to permit persons to whom the
12c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * Software is furnished to do so, subject to the following conditions:
13c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul *
14c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * The above copyright notice and this permission notice shall be included
15c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * in all copies or substantial portions of the Software.
16c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul *
17c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
20c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul */
24c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul
25c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul
26c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul#ifndef MULTISAMPLE_H
27c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul#define MULTISAMPLE_H
28c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul
290c123679fc909e778cc52d6bb0cfe52bfe1789c0Vinson Lee#include "glheader.h"
300c123679fc909e778cc52d6bb0cfe52bfe1789c0Vinson Lee
310c123679fc909e778cc52d6bb0cfe52bfe1789c0Vinson Leestruct gl_context;
32c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul
33c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paulextern void GLAPIENTRY
34c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul_mesa_SampleCoverageARB(GLclampf value, GLboolean invert);
35c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul
36c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul
37c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paulextern void
38f9995b30756140724f41daf963fa06167912be7fKristian Høgsberg_mesa_init_multisample(struct gl_context *ctx);
39c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul
40c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul
41c132e2b1db855b3c33d8b879c4a986011d631d43Brian Paul#endif
42