Merge branch '7.8'
[mesa.git] / src / gallium / drivers / identity / id_drm.c
1 /**************************************************************************
2 *
3 * Copyright 2009 VMware, Inc.
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
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 above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #include "state_tracker/drm_api.h"
29
30 #include "util/u_memory.h"
31 #include "id_drm.h"
32 #include "id_screen.h"
33 #include "id_public.h"
34 #include "id_screen.h"
35 #include "id_objects.h"
36
37 struct identity_drm_api
38 {
39 struct drm_api base;
40
41 struct drm_api *api;
42 };
43
44 static INLINE struct identity_drm_api *
45 identity_drm_api(struct drm_api *_api)
46 {
47 return (struct identity_drm_api *)_api;
48 }
49
50 static struct pipe_screen *
51 identity_drm_create_screen(struct drm_api *_api, int fd,
52 struct drm_create_screen_arg *arg)
53 {
54 struct identity_drm_api *id_api = identity_drm_api(_api);
55 struct drm_api *api = id_api->api;
56 struct pipe_screen *screen;
57
58 if (arg && arg->mode != DRM_CREATE_NORMAL)
59 return NULL;
60
61 screen = api->create_screen(api, fd, arg);
62
63 return identity_screen_create(screen);
64 }
65
66 static void
67 identity_drm_destroy(struct drm_api *_api)
68 {
69 struct identity_drm_api *id_api = identity_drm_api(_api);
70 struct drm_api *api = id_api->api;
71 api->destroy(api);
72
73 free(id_api);
74 }
75
76 struct drm_api *
77 identity_drm_create(struct drm_api *api)
78 {
79 struct identity_drm_api *id_api;
80
81 if (!api)
82 goto error;
83
84 id_api = CALLOC_STRUCT(identity_drm_api);
85
86 if (!id_api)
87 goto error;
88
89 id_api->base.name = api->name;
90 id_api->base.driver_name = api->driver_name;
91 id_api->base.create_screen = identity_drm_create_screen;
92 id_api->base.destroy = identity_drm_destroy;
93 id_api->api = api;
94
95 return &id_api->base;
96
97 error:
98 return api;
99 }