Files
workinf_Blender_Wasm/blender-5.2.0/intern/cycles/util/system.h
2026-08-12 04:47:48 -04:00

34 lines
765 B
C++

/* SPDX-FileCopyrightText: 2011-2022 Blender Foundation
*
* SPDX-License-Identifier: Apache-2.0 */
#pragma once
#include <cstdint>
#include <cstdlib>
#include <string>
CCL_NAMESPACE_BEGIN
/* Get width in characters of the current console output. */
int system_console_width();
std::string system_cpu_brand_string();
int system_cpu_bits();
bool system_cpu_support_sse42();
bool system_cpu_support_avx2();
size_t system_physical_ram();
/* Get identifier of the currently running process. */
uint64_t system_self_process_id();
size_t system_max_open_files();
/* Ensure the process can open many files simultaneously.
* This should be called once on application startup, as it is not thread safe. */
void system_max_open_files_ensure();
CCL_NAMESPACE_END