~ubuntu-branches/ubuntu/intrepid/xserver-xgl/intrepid

« back to all changes in this revision

Viewing changes to hw/kdrive/ati/ati_dripriv.h

  • Committer: Bazaar Package Importer
  • Author(s): Matthew Garrett
  • Date: 2006-02-13 14:21:43 UTC
  • Revision ID: james.westby@ubuntu.com-20060213142143-mad6z9xzem7hzxz9
Tags: upstream-7.0.0
ImportĀ upstreamĀ versionĀ 7.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/ati/r128_dripriv.h,v 1.3 2000/11/18 19:37:11 tsi Exp $ */
 
2
/*
 
3
 * Copyright 1999, 2000 ATI Technologies Inc., Markham, Ontario,
 
4
 *                      Precision Insight, Inc., Cedar Park, Texas, and
 
5
 *                      VA Linux Systems Inc., Fremont, California.
 
6
 *
 
7
 * All Rights Reserved.
 
8
 *
 
9
 * Permission is hereby granted, free of charge, to any person obtaining
 
10
 * a copy of this software and associated documentation files (the
 
11
 * "Software"), to deal in the Software without restriction, including
 
12
 * without limitation on the rights to use, copy, modify, merge,
 
13
 * publish, distribute, sublicense, and/or sell copies of the Software,
 
14
 * and to permit persons to whom the Software is furnished to do so,
 
15
 * subject to the following conditions:
 
16
 *
 
17
 * The above copyright notice and this permission notice (including the
 
18
 * next paragraph) shall be included in all copies or substantial
 
19
 * portions of the Software.
 
20
 *
 
21
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
22
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
23
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
24
 * NON-INFRINGEMENT.  IN NO EVENT SHALL ATI, PRECISION INSIGHT, VA LINUX
 
25
 * SYSTEMS AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
 
26
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 
27
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 
28
 * OTHER DEALINGS IN THE SOFTWARE.
 
29
 */
 
30
 
 
31
/*
 
32
 * Authors:
 
33
 *   Rickard E. Faith <faith@valinux.com>
 
34
 *   Kevin E. Martin <martin@valinux.com>
 
35
 *
 
36
 */
 
37
 
 
38
#ifndef _ATI_DRIPRIV_H_
 
39
#define _ATI_DRIPRIV_H_
 
40
 
 
41
#ifdef GLXEXT
 
42
#include "GL/glxint.h"
 
43
 
 
44
extern void GlxSetVisualConfigs(int nconfigs, __GLXvisualConfig *configs,
 
45
                                void **configprivs);
 
46
#endif
 
47
 
 
48
typedef struct {
 
49
    /* Nothing here yet */
 
50
    int dummy;
 
51
} ATIConfigPrivRec, *ATIConfigPrivPtr;
 
52
 
 
53
typedef struct {
 
54
    /* Nothing here yet */
 
55
    int dummy;
 
56
} ATIDRIContextRec, *ATIDRIContextPtr;
 
57
 
 
58
#endif