mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2024-11-27 22:04:17 +01: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 "BC7CompressionMode.h"
|
||||
|
||||
#include "TexComp.h"
|
||||
#include "TexCompTypes.h"
|
||||
#include "BCLookupTables.h"
|
||||
#include "RGBAEndpoints.h"
|
||||
#include "BitStream.h"
|
||||
|
||||
#include "BlockStats.h"
|
||||
|
||||
#ifdef HAS_MSVC_ATOMICS
|
||||
# include "Windows.h"
|
||||
#endif
|
||||
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
@ -80,9 +86,9 @@
|
||||
#include <ctime>
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define ALIGN(x) __declspec( align(x) )
|
||||
# define ALIGN(x) __declspec( align(x) )
|
||||
#else
|
||||
#define ALIGN(x) __attribute__((aligned(x)))
|
||||
# define ALIGN(x) __attribute__((aligned(x)))
|
||||
#endif
|
||||
#define ALIGN_SSE ALIGN(16)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user