rasterizer_gles3.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /**************************************************************************/
  2. /* rasterizer_gles3.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 RASTERIZER_GLES3_H
  31. #define RASTERIZER_GLES3_H
  32. #ifdef GLES3_ENABLED
  33. #include "effects/copy_effects.h"
  34. #include "environment/fog.h"
  35. #include "environment/gi.h"
  36. #include "rasterizer_canvas_gles3.h"
  37. #include "rasterizer_scene_gles3.h"
  38. #include "servers/rendering/renderer_compositor.h"
  39. #include "storage/config.h"
  40. #include "storage/light_storage.h"
  41. #include "storage/material_storage.h"
  42. #include "storage/mesh_storage.h"
  43. #include "storage/particles_storage.h"
  44. #include "storage/texture_storage.h"
  45. #include "storage/utilities.h"
  46. class RasterizerGLES3 : public RendererCompositor {
  47. private:
  48. uint64_t frame = 1;
  49. float delta = 0;
  50. double time_total = 0.0;
  51. protected:
  52. GLES3::Config *config = nullptr;
  53. GLES3::Utilities *utilities = nullptr;
  54. GLES3::TextureStorage *texture_storage = nullptr;
  55. GLES3::MaterialStorage *material_storage = nullptr;
  56. GLES3::MeshStorage *mesh_storage = nullptr;
  57. GLES3::ParticlesStorage *particles_storage = nullptr;
  58. GLES3::LightStorage *light_storage = nullptr;
  59. GLES3::GI *gi = nullptr;
  60. GLES3::Fog *fog = nullptr;
  61. GLES3::CopyEffects *copy_effects = nullptr;
  62. RasterizerCanvasGLES3 *canvas = nullptr;
  63. RasterizerSceneGLES3 *scene = nullptr;
  64. static RasterizerGLES3 *singleton;
  65. void _blit_render_target_to_screen(RID p_render_target, DisplayServer::WindowID p_screen, const Rect2 &p_screen_rect, uint32_t p_layer, bool p_first = true);
  66. public:
  67. RendererUtilities *get_utilities() { return utilities; }
  68. RendererLightStorage *get_light_storage() { return light_storage; }
  69. RendererMaterialStorage *get_material_storage() { return material_storage; }
  70. RendererMeshStorage *get_mesh_storage() { return mesh_storage; }
  71. RendererParticlesStorage *get_particles_storage() { return particles_storage; }
  72. RendererTextureStorage *get_texture_storage() { return texture_storage; }
  73. RendererGI *get_gi() { return gi; }
  74. RendererFog *get_fog() { return fog; }
  75. RendererCanvasRender *get_canvas() { return canvas; }
  76. RendererSceneRender *get_scene() { return scene; }
  77. void set_boot_image(const Ref<Image> &p_image, const Color &p_color, bool p_scale, bool p_use_filter = true);
  78. void initialize();
  79. void begin_frame(double frame_step);
  80. void prepare_for_blitting_render_targets();
  81. void blit_render_targets_to_screen(DisplayServer::WindowID p_screen, const BlitToScreen *p_render_targets, int p_amount);
  82. void end_frame(bool p_swap_buffers);
  83. void finalize();
  84. static RendererCompositor *_create_current() {
  85. return memnew(RasterizerGLES3);
  86. }
  87. static void make_current() {
  88. _create_func = _create_current;
  89. low_end = true;
  90. }
  91. _ALWAYS_INLINE_ uint64_t get_frame_number() const { return frame; }
  92. _ALWAYS_INLINE_ double get_frame_delta_time() const { return delta; }
  93. _ALWAYS_INLINE_ double get_total_time() const { return time_total; }
  94. static RasterizerGLES3 *get_singleton() { return singleton; }
  95. RasterizerGLES3();
  96. ~RasterizerGLES3();
  97. };
  98. #endif // GLES3_ENABLED
  99. #endif // RASTERIZER_GLES3_H