nouveau_driver.h revision 4cfb762c3eb2ea9a764c7ba0811c338ef5fba8fe
1/**************************************************************************
2
3Copyright 2006 Stephane Marchesin
4All Rights Reserved.
5
6Permission is hereby granted, free of charge, to any person obtaining a
7copy of this software and associated documentation files (the "Software"),
8to deal in the Software without restriction, including without limitation
9on the rights to use, copy, modify, merge, publish, distribute, sub
10license, and/or sell copies of the Software, and to permit persons to whom
11the Software is furnished to do so, subject to the following conditions:
12
13The above copyright notice and this permission notice (including the next
14paragraph) shall be included in all copies or substantial portions of the
15Software.
16
17THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
20ERIC ANHOLT OR SILICON INTEGRATED SYSTEMS CORP BE LIABLE FOR ANY CLAIM,
21DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
22OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
23USE OR OTHER DEALINGS IN THE SOFTWARE.
24
25**************************************************************************/
26
27
28
29#ifndef __NOUVEAU_DRIVER_H__
30#define __NOUVEAU_DRIVER_H__
31
32#define DRIVER_DATE	"20060219"
33#define DRIVER_AUTHOR	"Stephane Marchesin"
34
35extern void nouveauDriverInitFunctions( struct dd_function_table *functions );
36extern GLboolean nouveauDRMGetParam(nouveauContextPtr nmesa, unsigned int param,
37      				    uint64_t *value);
38extern GLboolean nouveauDRMSetParam(nouveauContextPtr nmesa, unsigned int param,
39      				    uint64_t value);
40
41#endif /* __NOUVEAU_DRIVER_H__ */
42
43