auxiliary/vl/drm: hide internal functions
[mesa.git] / src / gallium / auxiliary / vl / vl_winsys_drm.c
1 /**************************************************************************
2 *
3 * Copyright 2015 Advanced Micro Devices, 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 <assert.h>
29
30 #include "pipe/p_screen.h"
31 #include "pipe-loader/pipe_loader.h"
32 #include "state_tracker/drm_driver.h"
33
34 #include "util/u_memory.h"
35 #include "vl/vl_winsys.h"
36
37 static void
38 vl_drm_screen_destroy(struct vl_screen *vscreen);
39
40 struct vl_screen *
41 vl_drm_screen_create(int fd)
42 {
43 struct vl_screen *vscreen;
44
45 vscreen = CALLOC_STRUCT(vl_screen);
46 if (!vscreen)
47 return NULL;
48
49 #if GALLIUM_STATIC_TARGETS
50 vscreen->pscreen = dd_create_screen(fd);
51 #else
52 if (pipe_loader_drm_probe_fd(&vscreen->dev, dup(fd))) {
53 vscreen->pscreen =
54 pipe_loader_create_screen(vscreen->dev, PIPE_SEARCH_DIR);
55 }
56 #endif
57
58 if (!vscreen->pscreen)
59 goto error;
60
61 vscreen->destroy = vl_drm_screen_destroy;
62 vscreen->texture_from_drawable = NULL;
63 vscreen->get_dirty_area = NULL;
64 vscreen->get_timestamp = NULL;
65 vscreen->set_next_timestamp = NULL;
66 vscreen->get_private = NULL;
67 return vscreen;
68
69 error:
70 #if !GALLIUM_STATIC_TARGETS
71 if (vscreen->dev)
72 pipe_loader_release(&vscreen->dev, 1);
73 #endif // !GALLIUM_STATIC_TARGETS
74 FREE(vscreen);
75 return NULL;
76 }
77
78 static void
79 vl_drm_screen_destroy(struct vl_screen *vscreen)
80 {
81 assert(vscreen);
82
83 vscreen->pscreen->destroy(vscreen->pscreen);
84
85 #if !GALLIUM_STATIC_TARGETS
86 pipe_loader_release(&vscreen->dev, 1);
87 #endif
88
89 FREE(vscreen);
90 }