Add Chromium-only Blender WebEngine parity work
This commit is contained in:
33
blender-5.2.0/intern/cycles/util/system.h
Normal file
33
blender-5.2.0/intern/cycles/util/system.h
Normal file
@@ -0,0 +1,33 @@
|
||||
/* 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
|
||||
Reference in New Issue
Block a user