Skip to content

Commit

Permalink
Minor changes (naming and indention).
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Konovalov committed Jan 13, 2022
1 parent 257423d commit 1322192
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/Psd/PsdInterleave.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,24 @@

#include "PsdUnionCast.h"

#if !defined(USE_SSE)
#if defined(_M_IX86) || defined(_M_X64)
#define USE_SSE 1
#else
#define USE_SSE 0
#endif
#if !defined(PSD_USE_SSE)
#if defined(_M_IX86) || defined(_M_X64)
#define PSD_USE_SSE 1
#else
#define PSD_USE_SSE 0
#endif
#endif

#if USE_SSE
#include <emmintrin.h>
#if PSD_USE_SSE
#include <emmintrin.h>
#else
#include <tuple>
#include <tuple>
#endif


PSD_NAMESPACE_BEGIN

#if USE_SSE
#if PSD_USE_SSE
// splats a single 8-bit, 16-bit or 32-bit value into a SSE2 register
namespace
{
Expand Down Expand Up @@ -90,7 +90,7 @@ namespace

namespace imageUtil
{
#if USE_SSE
#if PSD_USE_SSE
// ---------------------------------------------------------------------------------------------------------------------
// ---------------------------------------------------------------------------------------------------------------------
template <typename T>
Expand Down Expand Up @@ -215,7 +215,7 @@ namespace imageUtil
}


#if USE_SSE
#if PSD_USE_SSE
// ---------------------------------------------------------------------------------------------------------------------
// ---------------------------------------------------------------------------------------------------------------------
template <typename T>
Expand Down

0 comments on commit 1322192

Please sign in to comment.