1 /* 2 * Copyright 2022 Yonggang Luo 3 * SPDX-License-Identifier: MIT 4 * 5 */ 6 7 #ifndef EGL_X11_INCLUDED 8 #define EGL_X11_INCLUDED 9 10 #include "egl_dri2.h" 11 12 uint32_t 13 dri2_fourcc_for_depth(struct dri2_egl_display *dri2_dpy, uint32_t depth); 14 15 EGLBoolean 16 dri2_x11_get_msc_rate(_EGLDisplay *display, _EGLSurface *surface, 17 EGLint *numerator, EGLint *denominator); 18 19 #endif 20