godot/thirdparty/embree/kernels/common/state.cpp

// Copyright 2009-2021 Intel Corporation
// SPDX-License-Identifier: Apache-2.0

#include "state.h"
#include "../../common/lexers/streamfilters.h"

namespace embree
{
  MutexSys g_printMutex;

  State::ErrorHandler State::g_errorHandler;

  State::ErrorHandler::ErrorHandler()
    :{}

  State::ErrorHandler::~ErrorHandler()
  {}

  RTCError* State::ErrorHandler::error() 
  {}

  State::State () 
    :{}

  State::~State() {}

  bool State::hasISA(const int isa) {}

  bool State::checkISASupport() {}
  
  void State::verify()
  {}

  const char* symbols[3] =;

  bool State::parseFile(const FileName& fileName)
  {}

  void State::parseString(const char* cfg)
  {}
  
  int string_to_cpufeatures(const std::string& isa)
  {}

  void State::parse(Ref<TokenStream> cin)
  {}

  bool State::verbosity(size_t N) {}

  void State::print()
  {}
}