godot/servers/rendering/renderer_rd/storage_rd/utilities.cpp

/**************************************************************************/
/*  utilities.cpp                                                         */
/**************************************************************************/
/*                         This file is part of:                          */
/*                             GODOT ENGINE                               */
/*                        https://godotengine.org                         */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */
/*                                                                        */
/* Permission is hereby granted, free of charge, to any person obtaining  */
/* a copy of this software and associated documentation files (the        */
/* "Software"), to deal in the Software without restriction, including    */
/* without limitation the rights to use, copy, modify, merge, publish,    */
/* distribute, sublicense, and/or sell copies of the Software, and to     */
/* permit persons to whom the Software is furnished to do so, subject to  */
/* the following conditions:                                              */
/*                                                                        */
/* The above copyright notice and this permission notice shall be         */
/* included in all copies or substantial portions of the Software.        */
/*                                                                        */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */
/**************************************************************************/

#include "utilities.h"
#include "../environment/fog.h"
#include "../environment/gi.h"
#include "light_storage.h"
#include "mesh_storage.h"
#include "particles_storage.h"
#include "texture_storage.h"

usingnamespaceRendererRD;

Utilities *Utilities::singleton =;

Utilities::Utilities() {}

Utilities::~Utilities() {}

/* INSTANCES */

RS::InstanceType Utilities::get_base_type(RID p_rid) const {}

bool Utilities::free(RID p_rid) {}

/* DEPENDENCIES */

void Utilities::base_update_dependency(RID p_base, DependencyTracker *p_instance) {}

/* VISIBILITY NOTIFIER */

RID Utilities::visibility_notifier_allocate() {}

void Utilities::visibility_notifier_initialize(RID p_notifier) {}

void Utilities::visibility_notifier_free(RID p_notifier) {}

void Utilities::visibility_notifier_set_aabb(RID p_notifier, const AABB &p_aabb) {}

void Utilities::visibility_notifier_set_callbacks(RID p_notifier, const Callable &p_enter_callbable, const Callable &p_exit_callable) {}

AABB Utilities::visibility_notifier_get_aabb(RID p_notifier) const {}

void Utilities::visibility_notifier_call(RID p_notifier, bool p_enter, bool p_deferred) {}

/* TIMING */

void Utilities::capture_timestamps_begin() {}

void Utilities::capture_timestamp(const String &p_name) {}

uint32_t Utilities::get_captured_timestamps_count() const {}

uint64_t Utilities::get_captured_timestamps_frame() const {}

uint64_t Utilities::get_captured_timestamp_gpu_time(uint32_t p_index) const {}

uint64_t Utilities::get_captured_timestamp_cpu_time(uint32_t p_index) const {}

String Utilities::get_captured_timestamp_name(uint32_t p_index) const {}

/* MISC */

void Utilities::update_dirty_resources() {}

bool Utilities::has_os_feature(const String &p_feature) const {}

void Utilities::update_memory_info() {}

uint64_t Utilities::get_rendering_info(RS::RenderingInfo p_info) {}

String Utilities::get_video_adapter_name() const {}

String Utilities::get_video_adapter_vendor() const {}

RenderingDevice::DeviceType Utilities::get_video_adapter_type() const {}

String Utilities::get_video_adapter_api_version() const {}

Size2i Utilities::get_maximum_viewport_size() const {}