mirror of https://github.com/wolfpld/tracy.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
394 B
C++
28 lines
394 B
C++
#ifndef __TRACYALIGN_HPP__
|
|
#define __TRACYALIGN_HPP__
|
|
|
|
#include <string.h>
|
|
|
|
#include "TracyForceInline.hpp"
|
|
|
|
namespace tracy
|
|
{
|
|
|
|
template<typename T>
|
|
tracy_force_inline T MemRead( const void* ptr )
|
|
{
|
|
T val;
|
|
memcpy( &val, ptr, sizeof( T ) );
|
|
return val;
|
|
}
|
|
|
|
template<typename T>
|
|
tracy_force_inline void MemWrite( void* ptr, T val )
|
|
{
|
|
memcpy( ptr, &val, sizeof( T ) );
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|