Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/cvtt/ConvectionKernels_Config.h
9902 views
1
#pragma once
2
#ifndef __CVTT_CONFIG_H__
3
#define __CVTT_CONFIG_H__
4
5
#if (defined(_M_IX86_FP) && _M_IX86_FP >= 2) || defined(_M_X64) || defined(__SSE2__)
6
#define CVTT_USE_SSE2
7
#endif
8
9
// Define this to compile everything as a single source file
10
//#define CVTT_SINGLE_FILE
11
12
#endif
13
14