Visualization Library

A lightweight C++ OpenGL middleware for 2D/3D graphics
[Home] [Tutorials] [All Classes] [Grouped Classes]

X:/dropbox/visualizationlibrary/src/vlCore/MurmurHash3.hpp

Go to the documentation of this file.
00001 //-----------------------------------------------------------------------------
00002 // MurmurHash3 was written by Austin Appleby, and is placed in the public
00003 // domain. The author hereby disclaims copyright to this source code.
00004 
00005 // Adaptations for Visualization Library by Michele Bosi
00006 
00007 // Homepage: http://code.google.com/p/smhasher/w/list
00008 
00009 #ifndef _MURMURHASH3_H_
00010 #define _MURMURHASH3_H_
00011 
00012 #include <vlCore/std_types.hpp>
00013 
00014 namespace vl
00015 {
00016   VLCORE_EXPORT void MurmurHash3_x86_32  ( const void * key, int len, u32 seed, void * out );
00017 
00018   VLCORE_EXPORT void MurmurHash3_x86_128 ( const void * key, int len, u32 seed, void * out );
00019 
00020   VLCORE_EXPORT void MurmurHash3_x64_128 ( const void * key, int len, u32 seed, void * out );
00021 }
00022 
00023 #endif // _MURMURHASH3_H_

Visualization Library 2011.09.1160 Reference Documentation
Copyright 2005-2011 Michele Bosi. All rights reserved.
Updated on Thu May 2 2013 13:40:30.
Permission is granted to use this page to write and publish articles regarding Visualization Library.