132b578d3Smrg/* -*- mode: c; c-basic-offset: 3 -*- */
232b578d3Smrg/*
332b578d3Smrg * Copyright 1999, 2000 ATI Technologies Inc., Markham, Ontario,
432b578d3Smrg *                      Precision Insight, Inc., Cedar Park, Texas, and
532b578d3Smrg *                      VA Linux Systems Inc., Fremont, California.
632b578d3Smrg *
732b578d3Smrg * All Rights Reserved.
832b578d3Smrg *
932b578d3Smrg * Permission is hereby granted, free of charge, to any person obtaining
1032b578d3Smrg * a copy of this software and associated documentation files (the
1132b578d3Smrg * "Software"), to deal in the Software without restriction, including
1232b578d3Smrg * without limitation on the rights to use, copy, modify, merge,
1332b578d3Smrg * publish, distribute, sublicense, and/or sell copies of the Software,
1432b578d3Smrg * and to permit persons to whom the Software is furnished to do so,
1532b578d3Smrg * subject to the following conditions:
1632b578d3Smrg *
1732b578d3Smrg * The above copyright notice and this permission notice (including the
1832b578d3Smrg * next paragraph) shall be included in all copies or substantial
1932b578d3Smrg * portions of the Software.
2032b578d3Smrg *
2132b578d3Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
2232b578d3Smrg * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2332b578d3Smrg * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
2432b578d3Smrg * NON-INFRINGEMENT. IN NO EVENT SHALL ATI, PRECISION INSIGHT, VA LINUX
2532b578d3Smrg * SYSTEMS AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
2632b578d3Smrg * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
2732b578d3Smrg * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2832b578d3Smrg * OTHER DEALINGS IN THE SOFTWARE.
2932b578d3Smrg */
3032b578d3Smrg
3132b578d3Smrg/*
3232b578d3Smrg * Authors:
3332b578d3Smrg *   Gareth Hughes <gareth@valinux.com>
3432b578d3Smrg *   Leif Delgass <ldelgass@retinalburn.net>
3532b578d3Smrg */
3632b578d3Smrg
3732b578d3Smrg#ifndef __ATIDRIPRIV_H__
3832b578d3Smrg#define __ATIDRIPRIV_H__ 1
3932b578d3Smrg
4032b578d3Smrg#define ATI_MAX_DRAWABLES	256
4132b578d3Smrg
4232b578d3Smrgtypedef struct {
4332b578d3Smrg    /* Nothing here yet */
4432b578d3Smrg    int dummy;
4532b578d3Smrg} ATIDRIContextRec, *ATIDRIContextPtr;
4632b578d3Smrg
4732b578d3Smrg#endif /* __ATIDRIPRIV_H__ */
48