HomeSort by relevance Sort by last modified time
    Searched refs:g_display (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/media/tools/player_x11/
player_x11.cc 42 static Display* g_display = NULL; variable
59 g_display = XOpenDisplay(NULL);
60 if (!g_display) {
66 int screen = DefaultScreen(g_display);
67 int root_window = RootWindow(g_display, screen);
70 g_window = XCreateSimpleWindow(g_display, root_window, 1, 1, 100, 50, 0,
71 BlackPixel(g_display, screen),
72 BlackPixel(g_display, screen));
73 XStoreName(g_display, g_window, "X11 Media Player");
75 XSelectInput(g_display, g_window
    [all...]
  /external/chromium_org/ui/gl/
gl_surface_glx.cc 43 Display* g_display = NULL; member in namespace:gfx::__anon17703
71 return glXGetSyncValuesOML(g_display, window_, system_time,
79 if (!glXGetMscRateOML(g_display, window_, numerator, denominator)) {
136 XSync(g_display, False);
349 XSendEvent(g_display, target_window, False, ExposureMask,
394 g_display = base::MessagePumpX11::GetDefaultXDisplay();
396 g_display = base::MessagePumpForUI::GetDefaultXDisplay();
398 g_display = base::MessagePumpForUI::GetDefaultXDisplay();
401 if (!g_display) {
407 if (!glXQueryVersion(g_display, &major, &minor))
    [all...]
gl_surface_wgl.cc 144 DisplayWGL* g_display; member in namespace:gfx::__anon17704
162 DCHECK(g_display == NULL);
186 g_display = wgl_display.release();
192 return g_display->device_context();
219 reinterpret_cast<wchar_t*>(g_display->window_class()),
244 g_display->pixel_format(),
318 pbuffer_ = wglCreatePbufferARB(g_display->device_context(),
319 g_display->pixel_format(),
gl_surface_egl.cc 52 EGLDisplay g_display; member in namespace:gfx::__anon17702
76 g_display, surface_, &u_system_time,
126 g_display = eglGetDisplay(g_native_display);
127 if (!g_display) {
132 if (!eglInitialize(g_display, NULL, NULL)) {
158 if (!eglChooseConfig(g_display,
173 if (!eglChooseConfig(g_display,
183 g_egl_extensions = eglQueryString(g_display, EGL_EXTENSIONS);
216 return g_display;
220 return g_display;
    [all...]

Completed in 440 milliseconds