2017-12-26 19:42:38 +01:00
|
|
|
/*************************************************************************/
|
2022-03-12 12:19:59 +01:00
|
|
|
/* rasterizer_storage_dummy.h */
|
2017-12-26 19:42:38 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/*************************************************************************/
|
2022-01-03 21:27:34 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2017-12-26 19:42:38 +01:00
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/*************************************************************************/
|
2018-09-11 18:13:45 +02:00
|
|
|
|
2022-03-12 12:19:59 +01:00
|
|
|
#ifndef RASTERIZER_STORAGE_DUMMY_H
|
|
|
|
#define RASTERIZER_STORAGE_DUMMY_H
|
2017-12-26 19:42:38 +01:00
|
|
|
|
2022-03-12 12:19:59 +01:00
|
|
|
#include "servers/rendering/renderer_storage.h"
|
|
|
|
#include "storage/texture_storage.h"
|
2017-12-26 19:42:38 +01:00
|
|
|
|
2020-12-04 19:26:24 +01:00
|
|
|
class RasterizerStorageDummy : public RendererStorage {
|
2017-12-26 19:42:38 +01:00
|
|
|
public:
|
2021-01-10 10:56:20 +01:00
|
|
|
void base_update_dependency(RID p_base, DependencyTracker *p_instance) override {}
|
2017-12-26 19:42:38 +01:00
|
|
|
|
2021-04-20 18:40:24 +02:00
|
|
|
/* OCCLUDER */
|
|
|
|
|
|
|
|
void occluder_set_mesh(RID p_occluder, const PackedVector3Array &p_vertices, const PackedInt32Array &p_indices) {}
|
|
|
|
|
2021-10-03 13:28:55 +02:00
|
|
|
/* FOG VOLUMES */
|
|
|
|
|
|
|
|
RID fog_volume_allocate() override { return RID(); }
|
|
|
|
void fog_volume_initialize(RID p_rid) override {}
|
|
|
|
|
|
|
|
void fog_volume_set_shape(RID p_fog_volume, RS::FogVolumeShape p_shape) override {}
|
|
|
|
void fog_volume_set_extents(RID p_fog_volume, const Vector3 &p_extents) override {}
|
|
|
|
void fog_volume_set_material(RID p_fog_volume, RID p_material) override {}
|
|
|
|
AABB fog_volume_get_aabb(RID p_fog_volume) const override { return AABB(); }
|
|
|
|
RS::FogVolumeShape fog_volume_get_shape(RID p_fog_volume) const override { return RS::FOG_VOLUME_SHAPE_BOX; }
|
|
|
|
|
2021-06-16 20:43:02 +02:00
|
|
|
/* VISIBILITY NOTIFIER */
|
|
|
|
virtual RID visibility_notifier_allocate() override { return RID(); }
|
|
|
|
virtual void visibility_notifier_initialize(RID p_notifier) override {}
|
|
|
|
virtual void visibility_notifier_set_aabb(RID p_notifier, const AABB &p_aabb) override {}
|
|
|
|
virtual void visibility_notifier_set_callbacks(RID p_notifier, const Callable &p_enter_callbable, const Callable &p_exit_callable) override {}
|
|
|
|
|
|
|
|
virtual AABB visibility_notifier_get_aabb(RID p_notifier) const override { return AABB(); }
|
|
|
|
virtual void visibility_notifier_call(RID p_notifier, bool p_enter, bool p_deferred) override {}
|
2021-01-10 10:56:20 +01:00
|
|
|
|
2022-04-07 16:00:51 +02:00
|
|
|
/* STORAGE */
|
2020-11-30 11:52:41 +01:00
|
|
|
|
2021-02-11 07:36:54 +01:00
|
|
|
RS::InstanceType get_base_type(RID p_rid) const override { return RS::INSTANCE_NONE; }
|
2021-02-16 12:19:17 +01:00
|
|
|
bool free(RID p_rid) override {
|
2022-03-12 12:19:59 +01:00
|
|
|
if (RendererDummy::TextureStorage::get_singleton()->owns_texture(p_rid)) {
|
|
|
|
RendererDummy::TextureStorage::get_singleton()->texture_free(p_rid);
|
2021-08-15 15:02:45 +02:00
|
|
|
return true;
|
2021-02-16 12:19:17 +01:00
|
|
|
}
|
2021-08-15 15:02:45 +02:00
|
|
|
return false;
|
2021-02-16 12:19:17 +01:00
|
|
|
}
|
2017-12-26 19:42:38 +01:00
|
|
|
|
2021-07-03 01:14:19 +02:00
|
|
|
virtual void update_memory_info() override {}
|
|
|
|
virtual uint64_t get_rendering_info(RS::RenderingInfo p_info) override { return 0; }
|
|
|
|
|
2021-12-18 11:27:13 +01:00
|
|
|
bool has_os_feature(const String &p_feature) const override {
|
|
|
|
return p_feature == "rgtc" || p_feature == "bptc" || p_feature == "s3tc" || p_feature == "etc" || p_feature == "etc2";
|
|
|
|
}
|
2017-12-26 19:42:38 +01:00
|
|
|
|
2020-09-07 17:39:53 +02:00
|
|
|
void update_dirty_resources() override {}
|
2017-12-26 19:42:38 +01:00
|
|
|
|
2020-09-07 17:39:53 +02:00
|
|
|
void set_debug_generate_wireframes(bool p_generate) override {}
|
2017-12-26 19:42:38 +01:00
|
|
|
|
2020-09-07 17:39:53 +02:00
|
|
|
String get_video_adapter_name() const override { return String(); }
|
|
|
|
String get_video_adapter_vendor() const override { return String(); }
|
2021-12-10 17:01:51 +01:00
|
|
|
RenderingDevice::DeviceType get_video_adapter_type() const override { return RenderingDevice::DeviceType::DEVICE_TYPE_OTHER; }
|
2021-07-31 15:39:46 +02:00
|
|
|
String get_video_adapter_api_version() const override { return String(); }
|
2017-12-26 19:42:38 +01:00
|
|
|
|
2020-12-04 19:26:24 +01:00
|
|
|
static RendererStorage *base_singleton;
|
2017-12-26 19:42:38 +01:00
|
|
|
|
2020-09-07 17:39:53 +02:00
|
|
|
void capture_timestamps_begin() override {}
|
|
|
|
void capture_timestamp(const String &p_name) override {}
|
|
|
|
uint32_t get_captured_timestamps_count() const override { return 0; }
|
|
|
|
uint64_t get_captured_timestamps_frame() const override { return 0; }
|
|
|
|
uint64_t get_captured_timestamp_gpu_time(uint32_t p_index) const override { return 0; }
|
|
|
|
uint64_t get_captured_timestamp_cpu_time(uint32_t p_index) const override { return 0; }
|
|
|
|
String get_captured_timestamp_name(uint32_t p_index) const override { return String(); }
|
2020-02-25 09:42:08 +01:00
|
|
|
|
|
|
|
RasterizerStorageDummy() {}
|
2017-12-26 19:42:38 +01:00
|
|
|
~RasterizerStorageDummy() {}
|
|
|
|
};
|
|
|
|
|
2022-03-12 12:19:59 +01:00
|
|
|
#endif // !RASTERIZER_STORAGE_DUMMY_H
|