forked from KolibriOS/kolibrios
edb28b33f3
git-svn-id: svn://kolibrios.org@3770 a494cfbc-eb01-0410-851d-a64ba20cac60
43 lines
913 B
C
43 lines
913 B
C
|
|
#ifndef INLINE_WRAPPER_SW_HELPER_H
|
|
#define INLINE_WRAPPER_SW_HELPER_H
|
|
|
|
#include "target-helpers/inline_sw_helper.h"
|
|
#include "sw/wrapper/wrapper_sw_winsys.h"
|
|
|
|
/**
|
|
* Try to wrap a hw screen with a software screen.
|
|
* On failure will return given screen.
|
|
*/
|
|
static INLINE struct pipe_screen *
|
|
sw_screen_wrap(struct pipe_screen *screen)
|
|
{
|
|
#if defined(GALLIUM_SOFTPIPE) || defined(GALLIUM_LLVMPIPE)
|
|
struct sw_winsys *sws;
|
|
struct pipe_screen *sw_screen = NULL;
|
|
const char *driver;
|
|
|
|
driver = debug_get_option("GALLIUM_DRIVER", "native");
|
|
if (strcmp(driver, "native") == 0)
|
|
return screen;
|
|
|
|
sws = wrapper_sw_winsys_wrap_pipe_screen(screen);
|
|
if (!sws)
|
|
goto err;
|
|
|
|
sw_screen = sw_screen_create_named(sws, driver);
|
|
|
|
if (!sw_screen)
|
|
goto err_winsys;
|
|
|
|
return sw_screen;
|
|
|
|
err_winsys:
|
|
return wrapper_sw_winsys_dewrap_pipe_screen(sws);
|
|
err:
|
|
#endif
|
|
return screen;
|
|
}
|
|
|
|
#endif
|