122944501Smrg/*
222944501Smrg * Copyright © 2008 Nicolai Haehnle
322944501Smrg * Copyright © 2008 Jérôme Glisse
422944501Smrg * All Rights Reserved.
522944501Smrg *
622944501Smrg * Permission is hereby granted, free of charge, to any person obtaining
722944501Smrg * a copy of this software and associated documentation files (the
822944501Smrg * "Software"), to deal in the Software without restriction, including
922944501Smrg * without limitation the rights to use, copy, modify, merge, publish,
1022944501Smrg * distribute, sub license, and/or sell copies of the Software, and to
1122944501Smrg * permit persons to whom the Software is furnished to do so, subject to
1222944501Smrg * the following conditions:
1322944501Smrg *
1422944501Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1522944501Smrg * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1622944501Smrg * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1722944501Smrg * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
1822944501Smrg * AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1922944501Smrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
2022944501Smrg * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
2122944501Smrg * USE OR OTHER DEALINGS IN THE SOFTWARE.
2222944501Smrg *
2322944501Smrg * The above copyright notice and this permission notice (including the
2422944501Smrg * next paragraph) shall be included in all copies or substantial portions
2522944501Smrg * of the Software.
2622944501Smrg */
2722944501Smrg/*
2822944501Smrg * Authors:
2922944501Smrg *      Aapo Tahkola <aet@rasterburn.org>
3022944501Smrg *      Nicolai Haehnle <prefect_@gmx.net>
3122944501Smrg *      Jérôme Glisse <glisse@freedesktop.org>
3222944501Smrg */
3322944501Smrg#ifndef RADEON_CS_GEM_H
3422944501Smrg#define RADEON_CS_GEM_H
3522944501Smrg
3622944501Smrg#include "radeon_cs.h"
3722944501Smrg
3822944501Smrgstruct radeon_cs_manager *radeon_cs_manager_gem_ctor(int fd);
3922944501Smrgvoid radeon_cs_manager_gem_dtor(struct radeon_cs_manager *csm);
4022944501Smrg
4122944501Smrg#endif
42