Reformat all the things. Have fun with merge conflicts.

This commit is contained in:
Pierre Bourdon
2016-06-24 10:43:46 +02:00
parent 2115e8a4a6
commit 3570c7f03a
1116 changed files with 187405 additions and 180344 deletions

View File

@ -8,15 +8,15 @@
namespace TextureSampler
{
void Sample(s32 s, s32 t, s32 lod, bool linear, u8 texmap, u8 *sample);
void Sample(s32 s, s32 t, s32 lod, bool linear, u8 texmap, u8* sample);
void SampleMip(s32 s, s32 t, s32 mip, bool linear, u8 texmap, u8 *sample);
void SampleMip(s32 s, s32 t, s32 mip, bool linear, u8 texmap, u8* sample);
enum
{
RED_SMP,
GRN_SMP,
BLU_SMP,
ALP_SMP
};
enum
{
RED_SMP,
GRN_SMP,
BLU_SMP,
ALP_SMP
};
}