Merge branch '7.8'
[mesa.git] / src / gallium / drivers / trace / tr_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 "tr_drm.h"
32 #include "tr_screen.h"
33 #include "tr_context.h"
34 #include "tr_buffer.h"
35 #include "tr_texture.h"
36 #include "tr_public.h"
37
38 struct trace_drm_api
39 {
40 struct drm_api base;
41
42 struct drm_api *api;
43 };
44
45 static INLINE struct trace_drm_api *
46 trace_drm_api(struct drm_api *_api)
47 {
48 return (struct trace_drm_api *)_api;
49 }
50
51 static struct pipe_screen *
52 trace_drm_create_screen(struct drm_api *_api, int fd,
53 struct drm_create_screen_arg *arg)
54 {
55 struct trace_drm_api *tr_api = trace_drm_api(_api);
56 struct drm_api *api = tr_api->api;
57 struct pipe_screen *screen;
58
59 /* TODO trace call */
60
61 if (arg && arg->mode != DRM_CREATE_NORMAL)
62 return NULL;
63
64 screen = api->create_screen(api, fd, arg);
65
66
67 return trace_screen_create(screen);
68 }
69
70 static void
71 trace_drm_destroy(struct drm_api *_api)
72 {
73 struct trace_drm_api *tr_api = trace_drm_api(_api);
74 struct drm_api *api = tr_api->api;
75
76 if (api->destroy)
77 api->destroy(api);
78
79 free(tr_api);
80 }
81
82 struct drm_api *
83 trace_drm_create(struct drm_api *api)
84 {
85 struct trace_drm_api *tr_api;
86
87 if (!api)
88 goto error;
89
90 if (!trace_enabled())
91 goto error;
92
93 tr_api = CALLOC_STRUCT(trace_drm_api);
94
95 if (!tr_api)
96 goto error;
97
98 tr_api->base.name = api->name;
99 tr_api->base.driver_name = api->driver_name;
100 tr_api->base.create_screen = trace_drm_create_screen;
101 tr_api->base.destroy = trace_drm_destroy;
102 tr_api->api = api;
103
104 return &tr_api->base;
105
106 error:
107 return api;
108 }