mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-07-17 23:07:34 +00:00
Fix whitespace issues
Why do I do this so much?
This commit is contained in:
parent
8ebdc30394
commit
4d6e75ab97
|
@ -63,15 +63,21 @@
|
||||||
//
|
//
|
||||||
//--------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------
|
||||||
|
|
||||||
#include "TexCompTypes.h"
|
|
||||||
#include "BC7Compressor.h"
|
#include "BC7Compressor.h"
|
||||||
#include "BC7CompressionMode.h"
|
#include "BC7CompressionMode.h"
|
||||||
|
|
||||||
|
#include "TexComp.h"
|
||||||
|
#include "TexCompTypes.h"
|
||||||
#include "BCLookupTables.h"
|
#include "BCLookupTables.h"
|
||||||
#include "RGBAEndpoints.h"
|
#include "RGBAEndpoints.h"
|
||||||
#include "BitStream.h"
|
#include "BitStream.h"
|
||||||
|
|
||||||
#include "BlockStats.h"
|
#include "BlockStats.h"
|
||||||
|
|
||||||
|
#ifdef HAS_MSVC_ATOMICS
|
||||||
|
# include "Windows.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <cstdio>
|
#include <cstdio>
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
@ -80,9 +86,9 @@
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
#ifdef _MSC_VER
|
#ifdef _MSC_VER
|
||||||
#define ALIGN(x) __declspec( align(x) )
|
# define ALIGN(x) __declspec( align(x) )
|
||||||
#else
|
#else
|
||||||
#define ALIGN(x) __attribute__((aligned(x)))
|
# define ALIGN(x) __attribute__((aligned(x)))
|
||||||
#endif
|
#endif
|
||||||
#define ALIGN_SSE ALIGN(16)
|
#define ALIGN_SSE ALIGN(16)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue