2019-06-22 18:34:26 +02:00
|
|
|
/*************************************************************************/
|
2020-12-04 19:26:24 +01:00
|
|
|
/* renderer_compositor_rd.h */
|
2019-06-22 18:34:26 +02: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). */
|
2019-06-22 18:34:26 +02: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. */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2020-12-04 19:26:24 +01:00
|
|
|
#ifndef RENDERING_SERVER_COMPOSITOR_RD_H
|
|
|
|
#define RENDERING_SERVER_COMPOSITOR_RD_H
|
2019-06-11 20:43:37 +02:00
|
|
|
|
|
|
|
#include "core/os/os.h"
|
2020-11-07 23:33:38 +01:00
|
|
|
#include "core/templates/thread_work_pool.h"
|
2020-12-04 19:26:24 +01:00
|
|
|
#include "servers/rendering/renderer_compositor.h"
|
2021-03-23 11:46:31 +01:00
|
|
|
#include "servers/rendering/renderer_rd/forward_clustered/render_forward_clustered.h"
|
2021-03-10 12:23:55 +01:00
|
|
|
#include "servers/rendering/renderer_rd/forward_mobile/render_forward_mobile.h"
|
2020-12-04 19:26:24 +01:00
|
|
|
#include "servers/rendering/renderer_rd/renderer_canvas_render_rd.h"
|
|
|
|
#include "servers/rendering/renderer_rd/renderer_storage_rd.h"
|
2021-05-11 15:08:38 +02:00
|
|
|
#include "servers/rendering/renderer_rd/shaders/blit.glsl.gen.h"
|
2019-07-29 17:59:18 +02:00
|
|
|
|
2020-12-04 19:26:24 +01:00
|
|
|
class RendererCompositorRD : public RendererCompositor {
|
2019-06-11 20:43:37 +02:00
|
|
|
protected:
|
2020-12-04 19:26:24 +01:00
|
|
|
RendererCanvasRenderRD *canvas;
|
|
|
|
RendererStorageRD *storage;
|
2021-03-09 03:02:53 +01:00
|
|
|
RendererSceneRenderRD *scene;
|
2019-06-11 20:43:37 +02:00
|
|
|
|
2021-05-11 15:08:38 +02:00
|
|
|
enum BlitMode {
|
|
|
|
BLIT_MODE_NORMAL,
|
|
|
|
BLIT_MODE_USE_LAYER,
|
|
|
|
BLIT_MODE_LENS,
|
2021-07-03 23:09:19 +02:00
|
|
|
BLIT_MODE_NORMAL_ALPHA,
|
2021-05-11 15:08:38 +02:00
|
|
|
BLIT_MODE_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BlitPushConstant {
|
2021-08-29 06:52:43 +02:00
|
|
|
float src_rect[4];
|
|
|
|
float dst_rect[4];
|
2021-05-11 15:08:38 +02:00
|
|
|
|
|
|
|
float eye_center[2];
|
|
|
|
float k1;
|
|
|
|
float k2;
|
|
|
|
|
|
|
|
float upscale;
|
|
|
|
float aspect_ratio;
|
|
|
|
uint32_t layer;
|
|
|
|
uint32_t pad1;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Blit {
|
|
|
|
BlitPushConstant push_constant;
|
|
|
|
BlitShaderRD shader;
|
|
|
|
RID shader_version;
|
|
|
|
RID pipelines[BLIT_MODE_MAX];
|
|
|
|
RID index_buffer;
|
|
|
|
RID array;
|
|
|
|
RID sampler;
|
|
|
|
} blit;
|
2019-06-16 04:45:24 +02:00
|
|
|
|
|
|
|
Map<RID, RID> render_target_descriptors;
|
|
|
|
|
2019-07-21 16:31:30 +02:00
|
|
|
double time;
|
2021-02-02 03:16:37 +01:00
|
|
|
double delta;
|
2019-07-21 16:31:30 +02:00
|
|
|
|
2020-05-01 14:34:23 +02:00
|
|
|
static uint64_t frame;
|
2019-07-29 20:29:43 +02:00
|
|
|
|
2019-06-11 20:43:37 +02:00
|
|
|
public:
|
2020-12-04 19:26:24 +01:00
|
|
|
RendererStorage *get_storage() { return storage; }
|
|
|
|
RendererCanvasRender *get_canvas() { return canvas; }
|
|
|
|
RendererSceneRender *get_scene() { return scene; }
|
2019-06-11 20:43:37 +02:00
|
|
|
|
2021-07-03 23:09:19 +02:00
|
|
|
void set_boot_image(const Ref<Image> &p_image, const Color &p_color, bool p_scale, bool p_use_filter);
|
2019-06-11 20:43:37 +02:00
|
|
|
|
2019-06-16 04:45:24 +02:00
|
|
|
void initialize();
|
|
|
|
void begin_frame(double frame_step);
|
2019-06-24 21:13:06 +02:00
|
|
|
void prepare_for_blitting_render_targets();
|
2020-03-04 02:51:12 +01:00
|
|
|
void blit_render_targets_to_screen(DisplayServer::WindowID p_screen, const BlitToScreen *p_render_targets, int p_amount);
|
2019-06-16 04:45:24 +02:00
|
|
|
|
|
|
|
void end_frame(bool p_swap_buffers);
|
|
|
|
void finalize();
|
2019-06-11 20:43:37 +02:00
|
|
|
|
2020-05-01 14:34:23 +02:00
|
|
|
_ALWAYS_INLINE_ uint64_t get_frame_number() const { return frame; }
|
2021-02-02 03:16:37 +01:00
|
|
|
_ALWAYS_INLINE_ double get_frame_delta_time() const { return delta; }
|
2020-06-25 15:33:28 +02:00
|
|
|
_ALWAYS_INLINE_ double get_total_time() const { return time; }
|
2019-07-29 20:29:43 +02:00
|
|
|
|
2019-06-11 20:43:37 +02:00
|
|
|
static Error is_viable() {
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2020-12-04 19:26:24 +01:00
|
|
|
static RendererCompositor *_create_current() {
|
|
|
|
return memnew(RendererCompositorRD);
|
2019-06-11 20:43:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void make_current() {
|
|
|
|
_create_func = _create_current;
|
|
|
|
}
|
|
|
|
|
2020-12-04 19:26:24 +01:00
|
|
|
static RendererCompositorRD *singleton;
|
|
|
|
RendererCompositorRD();
|
2021-05-25 02:25:11 +02:00
|
|
|
~RendererCompositorRD();
|
2019-06-11 20:43:37 +02:00
|
|
|
};
|
|
|
|
#endif // RASTERIZER_RD_H
|