odin-blend2d

Odin bindings to Blend2D
Log | Files | Refs | README | LICENSE

pngops_sse2.cpp (431B)


      1 // This file is part of Blend2D project <https://blend2d.com>
      2 //
      3 // See blend2d.h or LICENSE.md for license and copyright information
      4 // SPDX-License-Identifier: Zlib
      5 
      6 #include "../api-build_p.h"
      7 #if defined(BL_TARGET_OPT_SSE2)
      8 
      9 #include "../codec/pngopssimdimpl_p.h"
     10 
     11 namespace bl::Png::Ops {
     12 
     13 void init_func_table_sse2(FunctionTable& ft) noexcept {
     14   init_simd_functions(ft);
     15 }
     16 
     17 } // {bl::Png::Ops}
     18 
     19 #endif // BL_TARGET_OPT_SSE2