utilities.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /**************************************************************************/
  2. /* utilities.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef UTILITIES_DUMMY_H
  31. #define UTILITIES_DUMMY_H
  32. #include "servers/rendering/storage/utilities.h"
  33. namespace RendererDummy {
  34. class Utilities : public RendererUtilities {
  35. private:
  36. static Utilities *singleton;
  37. public:
  38. static Utilities *get_singleton() { return singleton; }
  39. Utilities();
  40. ~Utilities();
  41. /* INSTANCES */
  42. virtual RS::InstanceType get_base_type(RID p_rid) const override;
  43. virtual bool free(RID p_rid) override;
  44. /* DEPENDENCIES */
  45. virtual void base_update_dependency(RID p_base, DependencyTracker *p_instance) override;
  46. /* VISIBILITY NOTIFIER */
  47. virtual RID visibility_notifier_allocate() override { return RID(); }
  48. virtual void visibility_notifier_initialize(RID p_notifier) override {}
  49. virtual void visibility_notifier_free(RID p_notifier) override {}
  50. virtual void visibility_notifier_set_aabb(RID p_notifier, const AABB &p_aabb) override {}
  51. virtual void visibility_notifier_set_callbacks(RID p_notifier, const Callable &p_enter_callbable, const Callable &p_exit_callable) override {}
  52. virtual AABB visibility_notifier_get_aabb(RID p_notifier) const override { return AABB(); }
  53. virtual void visibility_notifier_call(RID p_notifier, bool p_enter, bool p_deferred) override {}
  54. /* TIMING */
  55. virtual void capture_timestamps_begin() override {}
  56. virtual void capture_timestamp(const String &p_name) override {}
  57. virtual uint32_t get_captured_timestamps_count() const override { return 0; }
  58. virtual uint64_t get_captured_timestamps_frame() const override { return 0; }
  59. virtual uint64_t get_captured_timestamp_gpu_time(uint32_t p_index) const override { return 0; }
  60. virtual uint64_t get_captured_timestamp_cpu_time(uint32_t p_index) const override { return 0; }
  61. virtual String get_captured_timestamp_name(uint32_t p_index) const override { return String(); }
  62. /* MISC */
  63. virtual void update_dirty_resources() override {}
  64. virtual void set_debug_generate_wireframes(bool p_generate) override {}
  65. virtual bool has_os_feature(const String &p_feature) const override {
  66. return p_feature == "rgtc" || p_feature == "bptc" || p_feature == "s3tc" || p_feature == "etc2";
  67. }
  68. virtual void update_memory_info() override {}
  69. virtual uint64_t get_rendering_info(RS::RenderingInfo p_info) override { return 0; }
  70. virtual String get_video_adapter_name() const override { return String(); }
  71. virtual String get_video_adapter_vendor() const override { return String(); }
  72. virtual RenderingDevice::DeviceType get_video_adapter_type() const override { return RenderingDevice::DeviceType::DEVICE_TYPE_OTHER; }
  73. virtual String get_video_adapter_api_version() const override { return String(); }
  74. virtual Size2i get_maximum_viewport_size() const override { return Size2i(); }
  75. virtual uint32_t get_maximum_shader_varyings() const override { return 31; } // Fair assumption for everything except old OpenGL-only phones.
  76. virtual uint64_t get_maximum_uniform_buffer_size() const override { return 65536; } // Fair assumption for all devices.
  77. };
  78. } // namespace RendererDummy
  79. #endif // UTILITIES_DUMMY_H