~ubuntu-branches/ubuntu/maverick/libdrm/maverick-proposed

« back to all changes in this revision

Viewing changes to radeon/radeon_cs_gem.h

  • Committer: Bazaar Package Importer
  • Author(s): Timo Aaltonen
  • Date: 2010-01-09 00:00:29 UTC
  • mfrom: (1.3.3 upstream)
  • mto: (2.2.9 experimental)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20100109000029-yhmol07llcxuzk0c
Tags: upstream-2.4.17
Import upstream version 2.4.17

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * Copyright © 2008 Nicolai Haehnle
 
3
 * Copyright © 2008 Jérôme Glisse
 
4
 * All Rights Reserved.
 
5
 * 
 
6
 * Permission is hereby granted, free of charge, to any person obtaining
 
7
 * a copy of this software and associated documentation files (the
 
8
 * "Software"), to deal in the Software without restriction, including
 
9
 * without limitation the rights to use, copy, modify, merge, publish,
 
10
 * distribute, sub license, and/or sell copies of the Software, and to
 
11
 * permit persons to whom the Software is furnished to do so, subject to
 
12
 * the following conditions:
 
13
 * 
 
14
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
15
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 
16
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
17
 * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
 
18
 * AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
19
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 
20
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 
 
21
 * USE OR OTHER DEALINGS IN THE SOFTWARE.
 
22
 *
 
23
 * The above copyright notice and this permission notice (including the
 
24
 * next paragraph) shall be included in all copies or substantial portions
 
25
 * of the Software.
 
26
 */
 
27
/*
 
28
 * Authors:
 
29
 *      Aapo Tahkola <aet@rasterburn.org>
 
30
 *      Nicolai Haehnle <prefect_@gmx.net>
 
31
 *      Jérôme Glisse <glisse@freedesktop.org>
 
32
 */
 
33
#ifndef RADEON_CS_GEM_H
 
34
#define RADEON_CS_GEM_H
 
35
 
 
36
#include "radeon_cs.h"
 
37
 
 
38
struct radeon_cs_manager *radeon_cs_manager_gem_ctor(int fd);
 
39
void radeon_cs_manager_gem_dtor(struct radeon_cs_manager *csm);
 
40
 
 
41
#endif