mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-03 16:28:08 +02:00
egl-static: Fix missing radeon_surface.h includes.
Fixes fatal error: radeon_surface.h: No such file or directory when libdrm is not present, or non-Linux OSes. Trivial.
This commit is contained in:
parent
5ac3435a47
commit
9d36a8d4d2
1 changed files with 16 additions and 0 deletions
|
|
@ -29,27 +29,43 @@
|
|||
#include "egl_pipe.h"
|
||||
|
||||
/* for i915 */
|
||||
#if _EGL_PIPE_I915
|
||||
#include "i915/drm/i915_drm_public.h"
|
||||
#include "i915/i915_public.h"
|
||||
#include "target-helpers/inline_wrapper_sw_helper.h"
|
||||
#endif
|
||||
/* for ilo */
|
||||
#if _EGL_PIPE_ILO
|
||||
#include "intel/intel_winsys.h"
|
||||
#include "ilo/ilo_public.h"
|
||||
#endif
|
||||
/* for nouveau */
|
||||
#if _EGL_PIPE_NOUVEAU
|
||||
#include "nouveau/drm/nouveau_drm_public.h"
|
||||
#endif
|
||||
/* for r300 */
|
||||
#if _EGL_PIPE_R300
|
||||
#include "radeon/drm/radeon_winsys.h"
|
||||
#include "radeon/drm/radeon_drm_public.h"
|
||||
#include "r300/r300_public.h"
|
||||
#endif
|
||||
/* for r600 */
|
||||
#if _EGL_PIPE_R600
|
||||
#include "r600/r600_public.h"
|
||||
#endif
|
||||
/* for radeonsi */
|
||||
#if _EGL_PIPE_RADEONSI
|
||||
#include "radeonsi/si_public.h"
|
||||
#endif
|
||||
/* for vmwgfx */
|
||||
#if _EGL_PIPE_VMWGFX
|
||||
#include "svga/drm/svga_drm_public.h"
|
||||
#include "svga/svga_public.h"
|
||||
#endif
|
||||
/* for freedreno */
|
||||
#if _EGL_PIPE_FREEDRENO
|
||||
#include "freedreno/drm/freedreno_drm_public.h"
|
||||
#endif
|
||||
|
||||
static struct pipe_screen *
|
||||
pipe_i915_create_screen(int fd)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue