diff options
author | Tony Wasserka <NeoBrainX@gmail.com> | 2014-07-27 17:34:11 +0200 |
---|---|---|
committer | Tony Wasserka <NeoBrainX@gmail.com> | 2014-08-12 13:49:33 +0200 |
commit | 94aa9da562457e1fed4911d1cda770c3e42bd419 (patch) | |
tree | ba3b698dd4032c2882ea9b4d4395c9fde1d2c498 /src/video_core/CMakeLists.txt | |
parent | Pica: Add primitive assembly stage. (diff) | |
download | yuzu-94aa9da562457e1fed4911d1cda770c3e42bd419.tar yuzu-94aa9da562457e1fed4911d1cda770c3e42bd419.tar.gz yuzu-94aa9da562457e1fed4911d1cda770c3e42bd419.tar.bz2 yuzu-94aa9da562457e1fed4911d1cda770c3e42bd419.tar.lz yuzu-94aa9da562457e1fed4911d1cda770c3e42bd419.tar.xz yuzu-94aa9da562457e1fed4911d1cda770c3e42bd419.tar.zst yuzu-94aa9da562457e1fed4911d1cda770c3e42bd419.zip |
Diffstat (limited to 'src/video_core/CMakeLists.txt')
-rw-r--r-- | src/video_core/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt index b06f14db0..828bf30fc 100644 --- a/src/video_core/CMakeLists.txt +++ b/src/video_core/CMakeLists.txt @@ -1,11 +1,13 @@ -set(SRCS command_processor.cpp +set(SRCS clipper.cpp + command_processor.cpp primitive_assembly.cpp utils.cpp vertex_shader.cpp video_core.cpp renderer_opengl/renderer_opengl.cpp) -set(HEADERS command_processor.h +set(HEADERS clipper.h + command_processor.h math.h primitive_assembly.h utils.h |