Browse Source

Documentation

git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@1821 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.70
sletz 18 years ago
parent
commit
790f0b7730
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common/JackPort.h

+ 1
- 1
common/JackPort.h View File

@@ -59,7 +59,7 @@ class JackPort
//__declspec(align(16)) float fBuffer[BUFFER_SIZE_MAX];
float fBuffer[BUFFER_SIZE_MAX];
#elif __GNUC__
float fBuffer[BUFFER_SIZE_MAX] __attribute__((aligned(64))); // 16 byte alignment for vector code, 64 byte better for cache loads/stores
float fBuffer[BUFFER_SIZE_MAX] __attribute__((aligned(64))); // 16 bytes alignment for vector code, 64 bytes better for cache loads/stores
#else
#warning Buffer will not be aligned on 16 bytes boundaries : vector based code (Altivec of SSE) will fail
float fBuffer[BUFFER_SIZE_MAX];


Loading…
Cancel
Save