diff options
author | Marek Olšák <[email protected]> | 2011-06-27 03:25:30 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-07-14 03:03:26 +0200 |
commit | 5fe54df58f31e5d321f7cbd5b095eb8c2417deb1 (patch) | |
tree | 7b3cd91b55b01b82a6f5314507317e329941ba54 /src/gallium | |
parent | b82db9a3c0a1b96d8eb5d0d78aecaf0ab331431a (diff) |
Rename swrastg_dri to swrast_dri
I prefer it this way and it has been suggested earlier by others too.
Opinions?
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/targets/dri-swrast/Makefile | 2 | ||||
-rw-r--r-- | src/gallium/targets/dri-swrast/SConscript | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/targets/dri-swrast/Makefile b/src/gallium/targets/dri-swrast/Makefile index 948c45abe5c..45b933e3f93 100644 --- a/src/gallium/targets/dri-swrast/Makefile +++ b/src/gallium/targets/dri-swrast/Makefile @@ -1,7 +1,7 @@ TOP = ../../../.. include $(TOP)/configs/current -LIBNAME = swrastg_dri.so +LIBNAME = swrast_dri.so DRIVER_DEFINES = \ -D__NOT_HAVE_DRM_H -DGALLIUM_SOFTPIPE \ diff --git a/src/gallium/targets/dri-swrast/SConscript b/src/gallium/targets/dri-swrast/SConscript index 33acc614e76..6b64c56413c 100644 --- a/src/gallium/targets/dri-swrast/SConscript +++ b/src/gallium/targets/dri-swrast/SConscript @@ -29,13 +29,13 @@ if env['llvm']: env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE') env.Prepend(LIBS = [llvmpipe]) -swrastg_sources = [ +swrast_sources = [ 'swrast_drm_api.c' ] module = env.LoadableModule( - target ='swrastg_dri.so', - source = swrastg_sources, + target ='swrast_dri.so', + source = swrast_sources, SHLIBPREFIX = '', ) |