1 /**************************************************************************
3 * Copyright 2009 VMware, Inc.
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:
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
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.
26 **************************************************************************/
28 #include "state_tracker/drm_api.h"
30 #include "util/u_memory.h"
32 #include "tr_screen.h"
33 #include "tr_public.h"
42 static INLINE
struct trace_drm_api
*
43 trace_drm_api(struct drm_api
*_api
)
45 return (struct trace_drm_api
*)_api
;
48 static struct pipe_screen
*
49 trace_drm_create_screen(struct drm_api
*_api
, int fd
,
50 struct drm_create_screen_arg
*arg
)
52 struct trace_drm_api
*tr_api
= trace_drm_api(_api
);
53 struct drm_api
*api
= tr_api
->api
;
54 struct pipe_screen
*screen
;
58 if (arg
&& arg
->mode
!= DRM_CREATE_NORMAL
)
61 screen
= api
->create_screen(api
, fd
, arg
);
64 return trace_screen_create(screen
);
68 trace_drm_destroy(struct drm_api
*_api
)
70 struct trace_drm_api
*tr_api
= trace_drm_api(_api
);
71 struct drm_api
*api
= tr_api
->api
;
80 trace_drm_create(struct drm_api
*api
)
82 struct trace_drm_api
*tr_api
;
90 tr_api
= CALLOC_STRUCT(trace_drm_api
);
95 tr_api
->base
.name
= api
->name
;
96 tr_api
->base
.driver_name
= api
->driver_name
;
97 tr_api
->base
.create_screen
= trace_drm_create_screen
;
98 tr_api
->base
.destroy
= trace_drm_destroy
;
101 return &tr_api
->base
;