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.
		
		
		
		
		
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			350 B
		
	
	
	
		
			C++
		
	
			
		
		
	
	
			19 lines
		
	
	
		
			350 B
		
	
	
	
		
			C++
		
	
| #ifndef __TRACYFILEMETA_HPP__
 | |
| #define __TRACYFILEMETA_HPP__
 | |
| 
 | |
| #include <algorithm>
 | |
| #include <stddef.h>
 | |
| #include <zstd.h>
 | |
| 
 | |
| #include "../public/common/tracy_lz4.hpp"
 | |
| 
 | |
| namespace tracy
 | |
| {
 | |
| 
 | |
| constexpr size_t FileBufSize = 64 * 1024;
 | |
| constexpr size_t FileBoundSize = std::max( LZ4_COMPRESSBOUND( FileBufSize ), ZSTD_COMPRESSBOUND( FileBufSize ) );
 | |
| 
 | |
| }
 | |
| 
 | |
| #endif
 |