18 lines
382 B
C++
18 lines
382 B
C++
// Copyright (c) the JPEG XL Project Authors. All rights reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
#ifndef LIB_JXL_SIMD_UTIL_H_
|
|
#define LIB_JXL_SIMD_UTIL_H_
|
|
|
|
#include <cstddef>
|
|
|
|
namespace jxl {
|
|
|
|
// Maximal vector size in bytes.
|
|
size_t MaxVectorSize();
|
|
|
|
} // namespace jxl
|
|
|
|
#endif // LIB_JXL_SIMD_UTIL_H_
|