summaryrefslogtreecommitdiff
path: root/shared-core/drm_internal.h
blob: b82a189d38dcbeed773fa141ffa55f906a9a9645 (plain)
1
2
3
4
5
6
7
8
9
10
<#
# Drm device configuration
#
# This driver provides support for the
# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
#

tristate '  3dfx Banshee/Voodoo3+' CONFIG_DRM_TDFX
#tristate '  3dlabs GMX 2000' CONFIG_DRM_GAMMA
tristate '  ATI Rage 128' CONFIG_DRM_R128
tristate '  ATI Radeon' CONFIG_DRM_RADEON
dep_tristate '  Intel I810' CONFIG_DRM_I810 $CONFIG_AGP
dep_tristate '  Intel 830M/845G/852GM/855GM/865G' CONFIG_DRM_I830 $CONFIG_AGP
dep_tristate '  Matrox g200/g400' CONFIG_DRM_MGA $CONFIG_AGP
tristate '  SiS' CONFIG_DRM_SIS
tristate '  Via Unichrome' CONFIG_DRM_VIA

e>/* * Copyright 2007 Red Hat, Inc * All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice (including the next * paragraph) shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. */ /* This header file holds function prototypes and data types that are * internal to the drm (not exported to user space) but shared across * drivers and platforms */ #ifndef __DRM_INTERNAL_H__ #define __DRM_INTERNAL_H__ /** * Drawable information. */ struct drm_drawable_info { unsigned int num_rects; struct drm_clip_rect *rects; }; #endif