Version
menu_open
link
Wwise SDK 2018.1.11
IAkProcessorFeatures.h
Go to the documentation of this file.
1 /*******************************************************************************
2 The content of this file includes portions of the AUDIOKINETIC Wwise Technology
3 released in source code form as part of the SDK installer package.
4 
5 Commercial License Usage
6 
7 Licensees holding valid commercial licenses to the AUDIOKINETIC Wwise Technology
8 may use this file in accordance with the end user license agreement provided
9 with the software or, alternatively, in accordance with the terms contained in a
10 written agreement between you and Audiokinetic Inc.
11 
12 Apache License Usage
13 
14 Alternatively, this file may be used under the Apache License, Version 2.0 (the
15 "Apache License"); you may not use this file except in compliance with the
16 Apache License. You may obtain a copy of the Apache License at
17 http://www.apache.org/licenses/LICENSE-2.0.
18 
19 Unless required by applicable law or agreed to in writing, software distributed
20 under the Apache License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
21 OR CONDITIONS OF ANY KIND, either express or implied. See the Apache License for
22 the specific language governing permissions and limitations under the License.
23 
24  Version: <VERSION> Build: <BUILDNUMBER>
25  Copyright (c) <COPYRIGHTYEAR> Audiokinetic Inc.
26 *******************************************************************************/
27 
28 /// \file
29 /// Runtime processor supported features detection interface.
30 
31 #pragma once
32 
34 
35 namespace AK
36 {
37  /// SIMD instruction sets.
39  {
40  AK_SIMD_SSE = 1<<0, ///< SSE support.
41  AK_SIMD_SSE2 = 1<<1, ///< SSE2 support.
42  AK_SIMD_SSE3 = 1<<2, ///< SSE3 support.
43  AK_SIMD_SSSE3 = 1<<3 ///< SSSE3 support.
44  };
45 
46  /// Runtime processor supported features detection interface. Allows to query specific processor features
47  /// to chose optimal implementation.
48  /// \warning The functions in this interface are not thread-safe, unless stated otherwise.
50  {
51  protected:
52  /// Virtual destructor on interface to avoid warnings.
54 
55  public:
56  /// Query for specific SIMD instruction set support. See AkSIMDProcessorSupport for options.
57  virtual bool GetSIMDSupport(AkSIMDProcessorSupport in_eSIMD) = 0;
58  /// Query L2 cache size to optimize prefetching techniques where necessary.
59  virtual AkUInt32 GetCacheSize() = 0;
60  /// Query cache line size to optimize prefetching techniques where necessary.
61  virtual AkUInt32 GetCacheLineSize() = 0;
62  };
63 }
virtual bool GetSIMDSupport(AkSIMDProcessorSupport in_eSIMD)=0
Query for specific SIMD instruction set support. See AkSIMDProcessorSupport for options.
AkSIMDProcessorSupport
SIMD instruction sets.
SSE2 support.
Audiokinetic namespace.
SSE support.
virtual ~IAkProcessorFeatures()
Virtual destructor on interface to avoid warnings.
SSE3 support.
virtual AkUInt32 GetCacheLineSize()=0
Query cache line size to optimize prefetching techniques where necessary.
SSSE3 support.
uint32_t AkUInt32
Unsigned 32-bit integer.
Definition: AkTypes.h:79
virtual AkUInt32 GetCacheSize()=0
Query L2 cache size to optimize prefetching techniques where necessary.

Was this page helpful?

Need Support?

Questions? Problems? Need more info? Contact us, and we can help!

Visit our Support page

Tell us about your project. We're here to help.

Register your project and we'll help you get started with no strings attached!

Get started with Wwise