mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-22 02:18:10 +02:00
21 lines
459 B
C
21 lines
459 B
C
|
|
#include "target-helpers/inline_debug_helper.h"
|
|
#include "state_tracker/drm_driver.h"
|
|
#include "freedreno/drm/freedreno_drm_public.h"
|
|
|
|
static struct pipe_screen *
|
|
create_screen(int fd, const struct pipe_screen_config *config)
|
|
{
|
|
struct pipe_screen *screen;
|
|
|
|
screen = fd_drm_screen_create(fd, NULL);
|
|
if (!screen)
|
|
return NULL;
|
|
|
|
screen = debug_screen_wrap(screen);
|
|
|
|
return screen;
|
|
}
|
|
|
|
PUBLIC
|
|
DRM_DRIVER_DESCRIPTOR("msm", NULL, create_screen)
|