diff options
author | bunnei <bunneidev@gmail.com> | 2015-07-21 22:54:38 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-08-15 17:33:46 -0400 |
commit | d67e2f78b77c0739caa8c6a915685aa8961a519c (patch) | |
tree | 6973754fc51ceb01efecd8618150084fd0608487 /src/video_core/shader/shader.cpp | |
parent | ddbeebb887cff61b087a48738650832bc62c9e83 (diff) |
Common: Added MurmurHash3 hash function for general-purpose use.
Diffstat (limited to 'src/video_core/shader/shader.cpp')
-rw-r--r-- | src/video_core/shader/shader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/shader.cpp b/src/video_core/shader/shader.cpp index e397e8e03f..13e22cb531 100644 --- a/src/video_core/shader/shader.cpp +++ b/src/video_core/shader/shader.cpp @@ -16,7 +16,7 @@ namespace Pica { namespace Shader { void Setup(UnitState& state) { - // TODO(bunnei): This will be used by the JIT in a subsequent commit + // TODO(bunnei): This will be used by the JIT in a subsequent patch } static Common::Profiling::TimingCategory shader_category("Vertex Shader"); |