diff options
author | Francisco Jerez <[email protected]> | 2011-11-25 14:26:00 +0100 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2012-05-11 12:39:43 +0200 |
commit | 317be33d73228fe8b340de8e029ff24b6e0d95b5 (patch) | |
tree | e04d2f6823c13cf51ea7cbd7ae55f2f396391ce2 /src/gallium/targets/pipe-loader/pipe_swrast.c | |
parent | e1364530622a26f11c79694429cf84418a0b7ef7 (diff) |
gallium: Add "pipe-loader" target.
This target generates pipe driver modules intended to be consumed by
auxiliary/pipe-loader. Most of it was taken from the "gbm" target --
the duplicated code will be replaced with references to this target in
a future commit.
Reviewed-by: Jakob Bornecrantz <[email protected]>
Diffstat (limited to 'src/gallium/targets/pipe-loader/pipe_swrast.c')
-rw-r--r-- | src/gallium/targets/pipe-loader/pipe_swrast.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/gallium/targets/pipe-loader/pipe_swrast.c b/src/gallium/targets/pipe-loader/pipe_swrast.c new file mode 100644 index 00000000000..092abf07a52 --- /dev/null +++ b/src/gallium/targets/pipe-loader/pipe_swrast.c @@ -0,0 +1,22 @@ + +#include "target-helpers/inline_sw_helper.h" +#include "target-helpers/inline_debug_helper.h" +#include "state_tracker/drm_driver.h" + +PUBLIC struct pipe_screen * +swrast_create_screen(struct sw_winsys *ws); + +PUBLIC +DRM_DRIVER_DESCRIPTOR("swrast", NULL, NULL, NULL) + +struct pipe_screen * +swrast_create_screen(struct sw_winsys *ws) +{ + struct pipe_screen *screen; + + screen = sw_screen_create(ws); + if (screen) + screen = debug_screen_wrap(screen); + + return screen; +} |