MiniEngine/MiniEngine_Test.h

18 lines
411 B
C
Raw Normal View History

2017-05-23 12:26:36 +08:00
#pragma once
#include "MiniEngine.h"
2017-05-23 12:26:36 +08:00
#include <string>
namespace MiniEngine
{
namespace Test
{
std::string GetMD5(unsigned char* buffer,unsigned int bufferLen);
void GetMD5Raw(unsigned char* buffer,unsigned int bufferLen,unsigned char* outbuff);
int CompareSurface(const Surface& surface1,const Surface& surface2,int allowableError);
2017-05-23 12:26:36 +08:00
}/// End of namespace MiniEngine::Test
}/// End of namespace MiniEngine