diff options
| author | 2015-05-24 12:16:22 -0700 | |
|---|---|---|
| committer | 2015-05-30 11:17:36 -0700 | |
| commit | 5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4 (patch) | |
| tree | 1a26ca3a3015ce6415a6ae48dca17ed0eeb2d252 /src/common | |
| parent | Merge pull request #810 from yuriks/memmap (diff) | |
| download | yuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.tar.gz yuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.tar.xz yuzu-5df2d1b5f75e0ee2d3fce7131fcee5dc8e1d7cc4.zip | |
Move video_core/math.h to common/vector_math.h
The file only contained vector manipulation code, and such widely-useable code doesn't belong in video_core.
Diffstat (limited to '')
| -rw-r--r-- | src/common/CMakeLists.txt | 1 | ||||
| -rw-r--r-- | src/common/vector_math.h (renamed from src/video_core/math.h) | 0 |
2 files changed, 1 insertions, 0 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index dbaaac77b..d1c306d3a 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -54,6 +54,7 @@ set(HEADERS | |||
| 54 | thread_queue_list.h | 54 | thread_queue_list.h |
| 55 | thunk.h | 55 | thunk.h |
| 56 | timer.h | 56 | timer.h |
| 57 | vector_math.h | ||
| 57 | ) | 58 | ) |
| 58 | 59 | ||
| 59 | create_directory_groups(${SRCS} ${HEADERS}) | 60 | create_directory_groups(${SRCS} ${HEADERS}) |
diff --git a/src/video_core/math.h b/src/common/vector_math.h index 4928c9bf2..4928c9bf2 100644 --- a/src/video_core/math.h +++ b/src/common/vector_math.h | |||