diff options
| author | Jules Blok <jules.blok@gmail.com> | 2015-06-10 00:00:12 +0200 |
|---|---|---|
| committer | Jules Blok <jules.blok@gmail.com> | 2015-06-10 00:00:12 +0200 |
| commit | 7dfced21a2e5aac7195e0e1ad76468e30306766b (patch) | |
| tree | bd671b639d3d911460b767caabad8fc8a759a6bf /Source/Core/VideoCommon/BoundingBox.cpp | |
| parent | c25be031fc1031d795157d8344b87b7841145197 (diff) | |
| parent | 7b0a65e295c784f9d573f2ef52d4e2a7b9bb2889 (diff) | |
Merge branch 'master' into stable
Diffstat (limited to 'Source/Core/VideoCommon/BoundingBox.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/BoundingBox.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/BoundingBox.cpp b/Source/Core/VideoCommon/BoundingBox.cpp new file mode 100644 index 0000000000..f1bf5d066e --- /dev/null +++ b/Source/Core/VideoCommon/BoundingBox.cpp @@ -0,0 +1,29 @@ +// Copyright 2014 Dolphin Emulator Project +// Licensed under GPLv2+ +// Refer to the license.txt file included. + + + +#include "VideoBackends/Software/Clipper.h" +#include "VideoBackends/Software/Rasterizer.h" +#include "VideoBackends/Software/SetupUnit.h" +#include "VideoBackends/Software/TransformUnit.h" +#include "VideoCommon/BoundingBox.h" +#include "VideoCommon/PixelShaderManager.h" + + +namespace BoundingBox +{ + +// External vars +bool active = false; +u16 coords[4] = { 0x80, 0xA0, 0x80, 0xA0 }; + +// Save state +void DoState(PointerWrap &p) +{ + p.Do(active); + p.Do(coords); +} + +} // namespace BoundingBox |
