diff options
author | Alejandro Piñeiro <[email protected]> | 2019-11-28 21:49:02 +0100 |
---|---|---|
committer | Alejandro Piñeiro <[email protected]> | 2019-12-02 13:59:28 +0100 |
commit | b6fd679a9e68e1707bffda48ed7cb0bb79ea9f23 (patch) | |
tree | b0fc8b743db0712ca3a3028b068b62eb7a2c3e35 /src/mesa/Makefile.sources | |
parent | 35fab1ba3395604f748cd13ba82991372ca0cae7 (diff) |
mesa/main/util: moving gallium u_mm to util, remove main/mm
Right now there are two copies of mm:
* mesa/main/mm.[ch]
* gallium/auxiliary/util/u_mm.[ch]
At some point they splitted, and from the commit message it was not
clear why it was not possible to have only one copy at a common place.
Taking into account that was several years ago, Im assuming that it
was not possible then.
This change would allow to have one copy of the same code, and also
being able to use that code out of mesa/main or gallium, if needed.
This commit moves u_mm and removes mm, as u_mm has slightly more
changes.
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/mesa/Makefile.sources')
-rw-r--r-- | src/mesa/Makefile.sources | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/Makefile.sources b/src/mesa/Makefile.sources index acb0c2b53cf..dfdff434c4d 100644 --- a/src/mesa/Makefile.sources +++ b/src/mesa/Makefile.sources @@ -149,8 +149,6 @@ MAIN_FILES = \ main/matrix.h \ main/mipmap.c \ main/mipmap.h \ - main/mm.c \ - main/mm.h \ main/menums.h \ main/mtypes.h \ main/multisample.c \ |