diff options
author | Jerome Glisse <[email protected]> | 2010-11-15 14:53:21 -0500 |
---|---|---|
committer | Jerome Glisse <[email protected]> | 2010-11-15 14:56:40 -0500 |
commit | 5da246944a787b933a509f0b65bab466574c3339 (patch) | |
tree | 8f58c7701dd866f31e80615ce4512b005aa5d4b4 /src/gallium/drivers/noop/Makefile | |
parent | 88850b3e4f5f2692bf77d46fab031bd573f4d642 (diff) |
gallium/noop: no operation gallium driver
This driver is a fake swdri driver that perform no operations
beside allocation gallium structure and buffer for upper layer
usage.
It's purpose is to help profiling core mesa/gallium without
having pipe driver overhead hidding hot spot of core code.
scons file are likely inadequate i am unfamiliar with this
build system.
To use it simply rename is to swrast_dri.so and properly set
LIBGL_DRIVERS_PATH env variable.
Signed-off-by: Jerome Glisse <[email protected]>
Diffstat (limited to 'src/gallium/drivers/noop/Makefile')
-rw-r--r-- | src/gallium/drivers/noop/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/gallium/drivers/noop/Makefile b/src/gallium/drivers/noop/Makefile new file mode 100644 index 00000000000..29b8d73de22 --- /dev/null +++ b/src/gallium/drivers/noop/Makefile @@ -0,0 +1,13 @@ +# Meta-driver which combines whichever software rasterizers have been +# built into a single convenience library. + +TOP = ../../../.. +include $(TOP)/configs/current + +LIBNAME = noop + +C_SOURCES = \ + noop_pipe.c \ + noop_state.c + +include ../../Makefile.template |