1af69d88dSmrg/*
2af69d88dSmrg * Copyright © 2012 Intel Corporation
3af69d88dSmrg *
4af69d88dSmrg * Permission is hereby granted, free of charge, to any person obtaining a
5af69d88dSmrg * copy of this software and associated documentation files (the "Software"),
6af69d88dSmrg * to deal in the Software without restriction, including without limitation
7af69d88dSmrg * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8af69d88dSmrg * and/or sell copies of the Software, and to permit persons to whom the
9af69d88dSmrg * Software is furnished to do so, subject to the following conditions:
10af69d88dSmrg *
11af69d88dSmrg * The above copyright notice and this permission notice (including the next
12af69d88dSmrg * paragraph) shall be included in all copies or substantial portions of the
13af69d88dSmrg * Software.
14af69d88dSmrg *
15af69d88dSmrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16af69d88dSmrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17af69d88dSmrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18af69d88dSmrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19af69d88dSmrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20af69d88dSmrg * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21af69d88dSmrg * DEALINGS IN THE SOFTWARE.
22af69d88dSmrg */
23af69d88dSmrg
24af69d88dSmrg#ifndef FORMATQUERY_H
25af69d88dSmrg#define FORMATQUERY_H
26af69d88dSmrg
27af69d88dSmrg#include "glheader.h"
28af69d88dSmrg
29af69d88dSmrgsize_t
30af69d88dSmrg_mesa_query_samples_for_format(struct gl_context *ctx, GLenum target,
31af69d88dSmrg                               GLenum internalFormat, int samples[16]);
32af69d88dSmrg
3301e04c3fSmrgvoid
3401e04c3fSmrg_mesa_query_internal_format_default(struct gl_context *ctx, GLenum target,
3501e04c3fSmrg                                    GLenum internalFormat, GLenum pname,
3601e04c3fSmrg                                    GLint *params);
3701e04c3fSmrg
38af69d88dSmrgextern void GLAPIENTRY
39af69d88dSmrg_mesa_GetInternalformativ(GLenum target, GLenum internalformat,
40af69d88dSmrg                          GLenum pname, GLsizei bufSize, GLint *params);
41af69d88dSmrg
4201e04c3fSmrgextern void GLAPIENTRY
4301e04c3fSmrg_mesa_GetInternalformati64v(GLenum target, GLenum internalformat,
4401e04c3fSmrg                            GLenum pname, GLsizei bufSize, GLint64 *params);
4501e04c3fSmrg
46af69d88dSmrg#endif /* FORMATQUERY_H */
47