~ubuntu-branches/ubuntu/precise/mesa/precise-updates

« back to all changes in this revision

Viewing changes to src/mesa/drivers/dri/sis/sis_alloc.h

  • Committer: Package Import Robot
  • Author(s): Robert Hooker
  • Date: 2012-02-02 12:05:48 UTC
  • mfrom: (1.7.1) (3.3.27 sid)
  • Revision ID: package-import@ubuntu.com-20120202120548-nvkma85jq0h4coix
Tags: 8.0~rc2-0ubuntu4
Drop drisearchdir handling, it is no longer needed with multiarch
and dri-alternates being removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**************************************************************************
2
 
 
3
 
Copyright 2003 Eric Anholt
4
 
All Rights Reserved.
5
 
 
6
 
Permission is hereby granted, free of charge, to any person obtaining a
7
 
copy of this software and associated documentation files (the "Software"),
8
 
to deal in the Software without restriction, including without limitation
9
 
on the rights to use, copy, modify, merge, publish, distribute, sub
10
 
license, and/or sell copies of the Software, and to permit persons to whom
11
 
the Software is furnished to do so, subject to the following conditions:
12
 
 
13
 
The above copyright notice and this permission notice (including the next
14
 
paragraph) shall be included in all copies or substantial portions of the
15
 
Software.
16
 
 
17
 
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
 
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
20
 
ERIC ANHOLT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
21
 
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22
 
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
 
 
24
 
**************************************************************************/
25
 
 
26
 
/*
27
 
 * Authors:
28
 
 *    Eric Anholt <anholt@FreeBSD.org>
29
 
 */
30
 
 
31
 
enum {
32
 
   VIDEO_TYPE,
33
 
   AGP_TYPE
34
 
};
35
 
 
36
 
void sisAllocZStencilBuffer( sisContextPtr smesa );
37
 
void sisFreeZStencilBuffer( sisContextPtr smesa );
38
 
void sisAllocBackbuffer( sisContextPtr smesa );
39
 
void sisFreeBackbuffer ( sisContextPtr smesa );
40
 
void *sisAllocFB( sisContextPtr smesa, GLuint size, void **handle );
41
 
void sisFreeFB( sisContextPtr smesa, void *handle );
42
 
void *sisAllocAGP( sisContextPtr smesa, GLuint size, void **handle );
43
 
void sisFreeAGP( sisContextPtr smesa, void *handle );