summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/egl/x11/native_x11.c
blob: f0519405d3d4c83474d05d16450288cb6b505f5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/*
 * Mesa 3-D graphics library
 * Version:  7.8
 *
 * Copyright (C) 2009-2010 Chia-I Wu <olv@0xlab.org>
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 */

#include "util/u_debug.h"
#include "util/u_memory.h"
#include "util/u_string.h"
#include "egllog.h"

#include "native_x11.h"
#include "x11_screen.h"

#include "state_tracker/drm_driver.h"

#define X11_PROBE_MAGIC 0x11980BE /* "X11PROBE" */

static void
x11_probe_destroy(struct native_probe *nprobe)
{
   if (nprobe->data)
      FREE(nprobe->data);
   FREE(nprobe);
}

static struct native_probe *
x11_create_probe(void *dpy)
{
   struct native_probe *nprobe;
   struct x11_screen *xscr;
   int scr;
   const char *driver_name = NULL;
   Display *xdpy;

   nprobe = CALLOC_STRUCT(native_probe);
   if (!nprobe)
      return NULL;

   xdpy = dpy;
   if (!xdpy) {
      xdpy = XOpenDisplay(NULL);
      if (!xdpy) {
         FREE(nprobe);
         return NULL;
      }
   }

   scr = DefaultScreen(xdpy);
   xscr = x11_screen_create(xdpy, scr);
   if (xscr) {
      if (x11_screen_support(xscr, X11_SCREEN_EXTENSION_DRI2)) {
         driver_name = x11_screen_probe_dri2(xscr, NULL, NULL);
         if (driver_name)
            nprobe->data = strdup(driver_name);
      }

      x11_screen_destroy(xscr);
   }

   if (xdpy != dpy)
      XCloseDisplay(xdpy);

   nprobe->magic = X11_PROBE_MAGIC;
   nprobe->display = dpy;

   nprobe->destroy = x11_probe_destroy;

   return nprobe;
}

static enum native_probe_result
x11_get_probe_result(struct native_probe *nprobe)
{
   if (!nprobe || nprobe->magic != X11_PROBE_MAGIC)
      return NATIVE_PROBE_UNKNOWN;

   /* this is a software driver */
   if (!driver_descriptor.create_screen)
      return NATIVE_PROBE_SUPPORTED;

   /* the display does not support DRI2 or the driver mismatches */
   if (!nprobe->data || strcmp(driver_descriptor.name, (const char *) nprobe->data) != 0)
      return NATIVE_PROBE_FALLBACK;

   return NATIVE_PROBE_EXACT;
}

static struct native_display *
native_create_display(void *dpy, struct native_event_handler *event_handler,
                      void *user_data)
{
   struct native_display *ndpy = NULL;
   boolean force_sw;

   force_sw = debug_get_bool_option("EGL_SOFTWARE", FALSE);
   if (!force_sw) {
      ndpy = x11_create_dri2_display((Display *) dpy,
            event_handler, user_data);
   }

   if (!ndpy) {
      EGLint level = (force_sw) ? _EGL_INFO : _EGL_WARNING;

      _eglLog(level, "use software fallback");
      ndpy = x11_create_ximage_display((Display *) dpy,
            event_handler, user_data);
   }

   return ndpy;
}

static const struct native_platform x11_platform = {
   "X11", /* name */
   x11_create_probe,
   x11_get_probe_result,
   native_create_display
};

const struct native_platform *
native_get_x11_platform(void)
{
   return &x11_platform;
}