blob: 3ccc443944edec9960623ac1b0293b7b5860e174 [file] [log] [blame]
kz15163460405de2006-09-28 01:41:18 -07001/*
2 * drm_drawable.h -- IOCTLs for drawables -*- linux-c -*-
3 * Created: Tue Feb 2 08:37:54 1999 by faith@valinux.com
4 */
5/*
6 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
7 * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
8 * All Rights Reserved.
9 *
10 * Permission is hereby granted, free of charge, to any person obtaining a
11 * copy of this software and associated documentation files (the "Software"),
12 * to deal in the Software without restriction, including without limitation
13 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
14 * and/or sell copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following conditions:
16 *
17 * The above copyright notice and this permission notice (including the next
18 * paragraph) shall be included in all copies or substantial portions of the
19 * Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
24 * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
25 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
26 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
27 * OTHER DEALINGS IN THE SOFTWARE.
28 *
29 * Authors:
30 * Rickard E. (Rik) Faith <faith@valinux.com>
31 * Gareth Hughes <gareth@valinux.com>
32 *
33 */
cg149915d0538f62008-01-09 19:45:15 -080034/*
miao chen - Sun Microsystems - Beijing Chinad0231072009-02-17 16:22:10 +080035 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
cg149915d0538f62008-01-09 19:45:15 -080036 * Use is subject to license terms.
37 */
kz15163460405de2006-09-28 01:41:18 -070038
kz15163460405de2006-09-28 01:41:18 -070039#include "drmP.h"
40
41/*ARGSUSED*/
42int
43drm_adddraw(DRM_IOCTL_ARGS)
44{
45 drm_draw_t draw;
46
47 draw.handle = 0; /* NOOP */
zw161486e92e3a82007-05-09 19:58:49 -070048 DRM_DEBUG("draw.handle = %d\n", draw.handle);
kz15163460405de2006-09-28 01:41:18 -070049
cg149915d0538f62008-01-09 19:45:15 -080050 DRM_COPYTO_WITH_RETURN((void *)data, &draw, sizeof (draw));
kz15163460405de2006-09-28 01:41:18 -070051
52 return (0);
53}
54
55/*ARGSUSED*/
56int
57drm_rmdraw(DRM_IOCTL_ARGS)
58{
zw161486e92e3a82007-05-09 19:58:49 -070059 return (0);
60}
61
62/*ARGSUSED*/
63drm_drawable_info_t *
64drm_get_drawable_info(drm_device_t *dev, drm_drawable_t id) {
65 return (NULL);
kz15163460405de2006-09-28 01:41:18 -070066}
miao chen - Sun Microsystems - Beijing Chinad0231072009-02-17 16:22:10 +080067
68/*ARGSUSED*/
69int
70drm_update_draw(DRM_IOCTL_ARGS)
71{
72 DRM_DEBUG("drm_update_draw\n");
73 return (0);
74}