odin-blend2d

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

target.cpp (397B)


      1 // This file is part of AsmJit project <https://asmjit.com>
      2 //
      3 // See <asmjit/core.h> or LICENSE.md for license and copyright information
      4 // SPDX-License-Identifier: Zlib
      5 
      6 #include "../core/api-build_p.h"
      7 #include "../core/target.h"
      8 
      9 ASMJIT_BEGIN_NAMESPACE
     10 
     11 Target::Target() noexcept
     12   : _environment{},
     13     _cpu_features{},
     14     _cpu_hints{} {}
     15 Target::~Target() noexcept {}
     16 
     17 ASMJIT_END_NAMESPACE