2023-01-05 13:25:55 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* renderer_viewport.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* 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. */
|
|
|
|
/**************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2021-10-07 15:46:55 +02:00
|
|
|
#ifndef RENDERER_VIEWPORT_H
|
|
|
|
#define RENDERER_VIEWPORT_H
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2021-04-20 18:40:24 +02:00
|
|
|
#include "core/templates/local_vector.h"
|
2020-11-07 23:33:38 +01:00
|
|
|
#include "core/templates/rid_owner.h"
|
|
|
|
#include "core/templates/self_list.h"
|
2022-04-04 16:10:22 +02:00
|
|
|
#include "servers/rendering/renderer_scene_render.h"
|
2022-09-08 02:44:36 +02:00
|
|
|
#include "servers/rendering/rendering_method.h"
|
2020-03-27 19:21:27 +01:00
|
|
|
#include "servers/rendering_server.h"
|
2020-04-08 16:47:36 +02:00
|
|
|
#include "servers/xr/xr_interface.h"
|
2022-08-04 10:40:39 +02:00
|
|
|
#include "storage/render_scene_buffers.h"
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2020-12-04 19:26:24 +01:00
|
|
|
class RendererViewport {
|
2016-10-03 21:33:42 +02:00
|
|
|
public:
|
2019-06-10 17:38:51 +02:00
|
|
|
struct CanvasBase {
|
2016-10-03 21:33:42 +02:00
|
|
|
};
|
|
|
|
|
2019-06-10 17:38:51 +02:00
|
|
|
struct Viewport {
|
2016-10-03 21:33:42 +02:00
|
|
|
RID self;
|
|
|
|
RID parent;
|
|
|
|
|
2022-07-24 22:39:06 +02:00
|
|
|
// use xr interface to override camera positioning and projection matrices and control output
|
|
|
|
bool use_xr = false;
|
2017-04-23 14:10:41 +02:00
|
|
|
|
2021-11-23 22:16:03 +01:00
|
|
|
Size2i internal_size;
|
2016-10-03 21:33:42 +02:00
|
|
|
Size2i size;
|
2022-08-16 23:54:55 +02:00
|
|
|
uint32_t view_count;
|
2016-10-03 21:33:42 +02:00
|
|
|
RID camera;
|
|
|
|
RID scenario;
|
|
|
|
|
2022-07-24 22:39:06 +02:00
|
|
|
RS::ViewportScaling3DMode scaling_3d_mode = RenderingServer::VIEWPORT_SCALING_3D_MODE_BILINEAR;
|
2021-11-23 22:16:03 +01:00
|
|
|
float scaling_3d_scale = 1.0;
|
|
|
|
float fsr_sharpness = 0.2f;
|
2022-06-12 01:49:59 +02:00
|
|
|
float texture_mipmap_bias = 0.0f;
|
2022-07-24 22:39:06 +02:00
|
|
|
bool fsr_enabled = false;
|
|
|
|
RS::ViewportUpdateMode update_mode = RenderingServer::VIEWPORT_UPDATE_WHEN_VISIBLE;
|
2016-10-03 21:33:42 +02:00
|
|
|
RID render_target;
|
|
|
|
RID render_target_texture;
|
2022-08-04 10:40:39 +02:00
|
|
|
Ref<RenderSceneBuffers> render_buffers;
|
2019-08-19 00:40:52 +02:00
|
|
|
|
2022-08-13 01:02:32 +02:00
|
|
|
RS::ViewportMSAA msaa_2d = RenderingServer::VIEWPORT_MSAA_DISABLED;
|
|
|
|
RS::ViewportMSAA msaa_3d = RenderingServer::VIEWPORT_MSAA_DISABLED;
|
2022-07-24 22:39:06 +02:00
|
|
|
RS::ViewportScreenSpaceAA screen_space_aa = RenderingServer::VIEWPORT_SCREEN_SPACE_AA_DISABLED;
|
|
|
|
bool use_taa = false;
|
|
|
|
bool use_debanding = false;
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2022-04-04 16:10:22 +02:00
|
|
|
RendererSceneRender::CameraData prev_camera_data;
|
|
|
|
uint64_t prev_camera_data_frame = 0;
|
|
|
|
|
2022-07-24 22:39:06 +02:00
|
|
|
bool use_occlusion_culling = false;
|
|
|
|
bool occlusion_buffer_dirty = false;
|
2021-04-20 18:40:24 +02:00
|
|
|
|
2020-03-04 02:51:12 +01:00
|
|
|
DisplayServer::WindowID viewport_to_screen;
|
2016-10-03 21:33:42 +02:00
|
|
|
Rect2 viewport_to_screen_rect;
|
2019-05-08 20:25:34 +02:00
|
|
|
bool viewport_render_direct_to_screen;
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2021-07-01 04:17:47 +02:00
|
|
|
bool disable_2d = false;
|
2023-01-30 01:04:39 +01:00
|
|
|
RS::ViewportEnvironmentMode disable_environment = RS::VIEWPORT_ENVIRONMENT_INHERIT;
|
2021-06-29 18:36:32 +02:00
|
|
|
bool disable_3d = false;
|
2022-07-24 22:39:06 +02:00
|
|
|
bool measure_render_time = false;
|
2020-04-10 19:18:42 +02:00
|
|
|
|
2022-07-24 22:39:06 +02:00
|
|
|
bool snap_2d_transforms_to_pixel = false;
|
|
|
|
bool snap_2d_vertices_to_pixel = false;
|
2020-10-29 22:09:16 +01:00
|
|
|
|
2020-04-10 19:18:42 +02:00
|
|
|
uint64_t time_cpu_begin;
|
|
|
|
uint64_t time_cpu_end;
|
|
|
|
|
|
|
|
uint64_t time_gpu_begin;
|
|
|
|
uint64_t time_gpu_end;
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2016-11-10 03:55:06 +01:00
|
|
|
RID shadow_atlas;
|
2022-07-24 22:39:06 +02:00
|
|
|
int shadow_atlas_size = 2048;
|
2022-02-04 16:41:08 +01:00
|
|
|
bool shadow_atlas_16_bits = true;
|
2016-11-10 03:55:06 +01:00
|
|
|
|
2022-07-24 22:39:06 +02:00
|
|
|
bool sdf_active = false;
|
2020-11-26 13:50:21 +01:00
|
|
|
|
2021-12-29 00:10:41 +01:00
|
|
|
float mesh_lod_threshold = 1.0;
|
2020-12-17 19:56:59 +01:00
|
|
|
|
2020-03-14 17:06:39 +01:00
|
|
|
uint64_t last_pass = 0;
|
|
|
|
|
2022-07-24 22:39:06 +02:00
|
|
|
RS::ViewportDebugDraw debug_draw = RenderingServer::VIEWPORT_DEBUG_DRAW_DISABLED;
|
2017-06-11 20:52:03 +02:00
|
|
|
|
2022-07-24 22:39:06 +02:00
|
|
|
RS::ViewportClearMode clear_mode = RenderingServer::VIEWPORT_CLEAR_ALWAYS;
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2020-10-24 17:15:43 +02:00
|
|
|
RS::CanvasItemTextureFilter texture_filter = RS::CANVAS_ITEM_TEXTURE_FILTER_LINEAR;
|
|
|
|
RS::CanvasItemTextureRepeat texture_repeat = RS::CANVAS_ITEM_TEXTURE_REPEAT_DISABLED;
|
|
|
|
|
2022-07-24 22:39:06 +02:00
|
|
|
bool transparent_bg = false;
|
2017-10-21 09:06:10 +02:00
|
|
|
|
2021-09-02 20:07:04 +02:00
|
|
|
uint32_t canvas_cull_mask = 0xffffffff;
|
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
struct CanvasKey {
|
2018-10-30 21:53:00 +01:00
|
|
|
int64_t stacking;
|
2016-10-03 21:33:42 +02:00
|
|
|
RID canvas;
|
2017-03-05 16:44:50 +01:00
|
|
|
bool operator<(const CanvasKey &p_canvas) const {
|
2020-05-14 16:41:43 +02:00
|
|
|
if (stacking == p_canvas.stacking) {
|
2018-10-30 21:53:00 +01:00
|
|
|
return canvas < p_canvas.canvas;
|
2020-05-14 16:41:43 +02:00
|
|
|
}
|
2018-10-30 21:53:00 +01:00
|
|
|
return stacking < p_canvas.stacking;
|
|
|
|
}
|
|
|
|
CanvasKey() {
|
|
|
|
stacking = 0;
|
2017-03-05 16:44:50 +01:00
|
|
|
}
|
2018-10-30 21:53:00 +01:00
|
|
|
CanvasKey(const RID &p_canvas, int p_layer, int p_sublayer) {
|
2017-03-05 16:44:50 +01:00
|
|
|
canvas = p_canvas;
|
2019-03-05 21:18:46 +01:00
|
|
|
int64_t sign = p_layer < 0 ? -1 : 1;
|
|
|
|
stacking = sign * (((int64_t)ABS(p_layer)) << 32) + p_sublayer;
|
2017-03-05 16:44:50 +01:00
|
|
|
}
|
2018-10-30 21:53:00 +01:00
|
|
|
int get_layer() const { return stacking >> 32; }
|
2016-10-03 21:33:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct CanvasData {
|
2022-04-04 15:06:57 +02:00
|
|
|
CanvasBase *canvas = nullptr;
|
2017-01-11 04:52:51 +01:00
|
|
|
Transform2D transform;
|
2016-10-03 21:33:42 +02:00
|
|
|
int layer;
|
2018-10-30 21:53:00 +01:00
|
|
|
int sublayer;
|
2016-10-03 21:33:42 +02:00
|
|
|
};
|
|
|
|
|
2017-01-11 04:52:51 +01:00
|
|
|
Transform2D global_transform;
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2022-05-13 15:04:37 +02:00
|
|
|
HashMap<RID, CanvasData> canvas_map;
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2022-09-08 02:44:36 +02:00
|
|
|
RenderingMethod::RenderInfo render_info;
|
2021-07-03 01:14:19 +02:00
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
Viewport() {
|
2022-08-16 23:54:55 +02:00
|
|
|
view_count = 1;
|
2020-03-27 19:21:27 +01:00
|
|
|
update_mode = RS::VIEWPORT_UPDATE_WHEN_VISIBLE;
|
|
|
|
clear_mode = RS::VIEWPORT_CLEAR_ALWAYS;
|
2017-10-21 09:06:10 +02:00
|
|
|
transparent_bg = false;
|
2021-07-01 04:17:47 +02:00
|
|
|
|
2020-03-04 02:51:12 +01:00
|
|
|
viewport_to_screen = DisplayServer::INVALID_WINDOW_ID;
|
2017-03-05 16:44:50 +01:00
|
|
|
shadow_atlas_size = 0;
|
2020-04-10 19:18:42 +02:00
|
|
|
measure_render_time = false;
|
|
|
|
|
2020-03-27 19:21:27 +01:00
|
|
|
debug_draw = RS::VIEWPORT_DEBUG_DRAW_DISABLED;
|
2020-04-12 06:49:10 +02:00
|
|
|
screen_space_aa = RS::VIEWPORT_SCREEN_SPACE_AA_DISABLED;
|
2020-04-20 23:34:47 +02:00
|
|
|
use_debanding = false;
|
2021-04-20 18:40:24 +02:00
|
|
|
use_occlusion_culling = false;
|
|
|
|
occlusion_buffer_dirty = true;
|
2020-04-12 06:49:10 +02:00
|
|
|
|
2020-10-29 22:09:16 +01:00
|
|
|
snap_2d_transforms_to_pixel = false;
|
|
|
|
snap_2d_vertices_to_pixel = false;
|
|
|
|
|
2020-04-08 16:47:36 +02:00
|
|
|
use_xr = false;
|
2020-11-26 13:50:21 +01:00
|
|
|
sdf_active = false;
|
2020-04-10 19:18:42 +02:00
|
|
|
|
|
|
|
time_cpu_begin = 0;
|
|
|
|
time_cpu_end = 0;
|
|
|
|
|
|
|
|
time_gpu_begin = 0;
|
|
|
|
time_gpu_end = 0;
|
2016-10-03 21:33:42 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-04-10 19:18:42 +02:00
|
|
|
HashMap<String, RID> timestamp_vp_map;
|
|
|
|
|
2020-03-14 17:06:39 +01:00
|
|
|
uint64_t draw_viewports_pass = 0;
|
|
|
|
|
2021-06-29 15:58:28 +02:00
|
|
|
mutable RID_Owner<Viewport, true> viewport_owner;
|
2016-10-05 06:26:35 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector<Viewport *> active_viewports;
|
2022-07-17 01:59:13 +02:00
|
|
|
Vector<Viewport *> sorted_active_viewports;
|
|
|
|
bool sorted_active_viewports_dirty = false;
|
2016-10-05 06:26:35 +02:00
|
|
|
|
2021-07-03 01:14:19 +02:00
|
|
|
int total_objects_drawn = 0;
|
|
|
|
int total_vertices_drawn = 0;
|
|
|
|
int total_draw_calls_used = 0;
|
|
|
|
|
2016-10-03 21:33:42 +02:00
|
|
|
private:
|
2022-07-17 01:59:13 +02:00
|
|
|
Vector<Viewport *> _sort_active_viewports();
|
2022-08-16 23:54:55 +02:00
|
|
|
void _viewport_set_size(Viewport *p_viewport, int p_width, int p_height, uint32_t p_view_count);
|
2021-08-19 03:52:06 +02:00
|
|
|
void _configure_3d_render_buffers(Viewport *p_viewport);
|
2021-05-07 15:19:04 +02:00
|
|
|
void _draw_3d(Viewport *p_viewport);
|
2021-08-19 03:52:06 +02:00
|
|
|
void _draw_viewport(Viewport *p_viewport);
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2021-04-20 18:40:24 +02:00
|
|
|
int occlusion_rays_per_thread = 512;
|
|
|
|
|
|
|
|
void _resize_occlusion_culling_buffer(const Size2i &p_size);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2021-02-09 17:19:03 +01:00
|
|
|
RID viewport_allocate();
|
|
|
|
void viewport_initialize(RID p_rid);
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2020-04-08 16:47:36 +02:00
|
|
|
void viewport_set_use_xr(RID p_viewport, bool p_use_xr);
|
2017-04-23 14:10:41 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void viewport_set_size(RID p_viewport, int p_width, int p_height);
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2020-03-04 02:51:12 +01:00
|
|
|
void viewport_attach_to_screen(RID p_viewport, const Rect2 &p_rect = Rect2(), DisplayServer::WindowID p_screen = DisplayServer::MAIN_WINDOW_ID);
|
2019-05-08 20:25:34 +02:00
|
|
|
void viewport_set_render_direct_to_screen(RID p_viewport, bool p_enable);
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void viewport_set_active(RID p_viewport, bool p_active);
|
|
|
|
void viewport_set_parent_viewport(RID p_viewport, RID p_parent_viewport);
|
2021-11-23 22:16:03 +01:00
|
|
|
|
|
|
|
void viewport_set_scaling_3d_mode(RID p_viewport, RS::ViewportScaling3DMode p_mode);
|
|
|
|
void viewport_set_scaling_3d_scale(RID p_viewport, float p_scaling_3d_scale);
|
|
|
|
void viewport_set_fsr_sharpness(RID p_viewport, float p_sharpness);
|
2022-06-12 01:49:59 +02:00
|
|
|
void viewport_set_texture_mipmap_bias(RID p_viewport, float p_mipmap_bias);
|
2021-11-23 22:16:03 +01:00
|
|
|
|
2020-03-27 19:21:27 +01:00
|
|
|
void viewport_set_update_mode(RID p_viewport, RS::ViewportUpdateMode p_mode);
|
2017-03-05 16:44:50 +01:00
|
|
|
void viewport_set_vflip(RID p_viewport, bool p_enable);
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2020-03-27 19:21:27 +01:00
|
|
|
void viewport_set_clear_mode(RID p_viewport, RS::ViewportClearMode p_clear_mode);
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2023-03-31 02:28:53 +02:00
|
|
|
RID viewport_get_render_target(RID p_viewport) const;
|
2016-10-03 21:33:42 +02:00
|
|
|
RID viewport_get_texture(RID p_viewport) const;
|
2021-04-20 18:40:24 +02:00
|
|
|
RID viewport_get_occluder_debug_texture(RID p_viewport) const;
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2022-04-04 16:10:22 +02:00
|
|
|
void viewport_set_prev_camera_data(RID p_viewport, const RendererSceneRender::CameraData *p_camera_data);
|
|
|
|
const RendererSceneRender::CameraData *viewport_get_prev_camera_data(RID p_viewport);
|
|
|
|
|
2021-07-01 04:17:47 +02:00
|
|
|
void viewport_set_disable_2d(RID p_viewport, bool p_disable);
|
2023-01-30 01:04:39 +01:00
|
|
|
void viewport_set_environment_mode(RID p_viewport, RS::ViewportEnvironmentMode p_mode);
|
2021-06-29 18:36:32 +02:00
|
|
|
void viewport_set_disable_3d(RID p_viewport, bool p_disable);
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2023-01-30 01:04:39 +01:00
|
|
|
bool viewport_is_environment_disabled(Viewport *viewport);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void viewport_attach_camera(RID p_viewport, RID p_camera);
|
|
|
|
void viewport_set_scenario(RID p_viewport, RID p_scenario);
|
|
|
|
void viewport_attach_canvas(RID p_viewport, RID p_canvas);
|
|
|
|
void viewport_remove_canvas(RID p_viewport, RID p_canvas);
|
|
|
|
void viewport_set_canvas_transform(RID p_viewport, RID p_canvas, const Transform2D &p_offset);
|
|
|
|
void viewport_set_transparent_background(RID p_viewport, bool p_enabled);
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void viewport_set_global_canvas_transform(RID p_viewport, const Transform2D &p_transform);
|
2018-10-30 21:53:00 +01:00
|
|
|
void viewport_set_canvas_stacking(RID p_viewport, RID p_canvas, int p_layer, int p_sublayer);
|
2016-10-03 21:33:42 +02:00
|
|
|
|
2021-09-02 20:07:04 +02:00
|
|
|
void viewport_set_canvas_cull_mask(RID p_viewport, uint32_t p_canvas_cull_mask);
|
|
|
|
|
2022-05-01 01:40:30 +02:00
|
|
|
void viewport_set_positional_shadow_atlas_size(RID p_viewport, int p_size, bool p_16_bits = true);
|
|
|
|
void viewport_set_positional_shadow_atlas_quadrant_subdivision(RID p_viewport, int p_quadrant, int p_subdiv);
|
2016-11-10 03:55:06 +01:00
|
|
|
|
2022-08-13 01:02:32 +02:00
|
|
|
void viewport_set_msaa_2d(RID p_viewport, RS::ViewportMSAA p_msaa);
|
|
|
|
void viewport_set_msaa_3d(RID p_viewport, RS::ViewportMSAA p_msaa);
|
2020-04-12 06:49:10 +02:00
|
|
|
void viewport_set_screen_space_aa(RID p_viewport, RS::ViewportScreenSpaceAA p_mode);
|
2022-04-04 16:10:22 +02:00
|
|
|
void viewport_set_use_taa(RID p_viewport, bool p_use_taa);
|
2020-04-20 23:34:47 +02:00
|
|
|
void viewport_set_use_debanding(RID p_viewport, bool p_use_debanding);
|
2021-04-20 18:40:24 +02:00
|
|
|
void viewport_set_use_occlusion_culling(RID p_viewport, bool p_use_occlusion_culling);
|
|
|
|
void viewport_set_occlusion_rays_per_thread(int p_rays_per_thread);
|
|
|
|
void viewport_set_occlusion_culling_build_quality(RS::ViewportOcclusionCullingBuildQuality p_quality);
|
2021-12-29 00:10:41 +01:00
|
|
|
void viewport_set_mesh_lod_threshold(RID p_viewport, float p_pixels);
|
2020-12-17 19:56:59 +01:00
|
|
|
|
2021-07-03 01:14:19 +02:00
|
|
|
virtual int viewport_get_render_info(RID p_viewport, RS::ViewportRenderInfoType p_type, RS::ViewportRenderInfo p_info);
|
2020-03-27 19:21:27 +01:00
|
|
|
virtual void viewport_set_debug_draw(RID p_viewport, RS::ViewportDebugDraw p_draw);
|
2017-06-11 20:52:03 +02:00
|
|
|
|
2020-04-10 19:18:42 +02:00
|
|
|
void viewport_set_measure_render_time(RID p_viewport, bool p_enable);
|
|
|
|
float viewport_get_measured_render_time_cpu(RID p_viewport) const;
|
|
|
|
float viewport_get_measured_render_time_gpu(RID p_viewport) const;
|
|
|
|
|
2020-10-29 22:09:16 +01:00
|
|
|
void viewport_set_snap_2d_transforms_to_pixel(RID p_viewport, bool p_enabled);
|
|
|
|
void viewport_set_snap_2d_vertices_to_pixel(RID p_viewport, bool p_enabled);
|
|
|
|
|
2020-10-24 17:15:43 +02:00
|
|
|
void viewport_set_default_canvas_item_texture_filter(RID p_viewport, RS::CanvasItemTextureFilter p_filter);
|
|
|
|
void viewport_set_default_canvas_item_texture_repeat(RID p_viewport, RS::CanvasItemTextureRepeat p_repeat);
|
|
|
|
|
2020-11-26 13:50:21 +01:00
|
|
|
void viewport_set_sdf_oversize_and_scale(RID p_viewport, RS::ViewportSDFOversize p_over_size, RS::ViewportSDFScale p_scale);
|
|
|
|
|
Implement Running Godot as Movie Writer
* Allows running the game in "movie writer" mode.
* It ensures entirely stable framerate, so your run can be saved stable and with proper sound (which is impossible if your CPU/GPU can't sustain doing this in real-time).
* If disabling vsync, it can save movies faster than the game is run, but if you want to control the interaction it can get difficult.
* Implements a simple, default MJPEG writer.
This new features has two main use cases, which have high demand:
* Saving game videos in high quality and ensuring the frame rate is *completely* stable, always.
* Using Godot as a tool to make movies and animations (which is ideal if you want interaction, or creating them procedurally. No other software is as good for this).
**Note**: This feature **IS NOT** for capturing real-time footage. Use something like OBS, SimpleScreenRecorder or FRAPS to achieve that, as they do a much better job at intercepting the compositor than Godot can probably do using Vulkan or OpenGL natively. If your game runs near real-time when capturing, you can still use this feature but it will play no sound (sound will be saved directly).
Usage:
$ godot --write-movie movie.avi [scene_file.tscn]
Missing:
* Options for configuring video writing via GLOBAL_DEF
* UI Menu for launching with this mode from the editor.
* Add to list of command line options.
* Add a feature tag to override configurations when movie writing (fantastic for saving videos with highest quality settings).
2022-06-17 00:55:19 +02:00
|
|
|
virtual RID viewport_find_from_screen_attachment(DisplayServer::WindowID p_id = DisplayServer::MAIN_WINDOW_ID) const;
|
|
|
|
|
2022-02-11 12:33:54 +01:00
|
|
|
void viewport_set_vrs_mode(RID p_viewport, RS::ViewportVRSMode p_mode);
|
|
|
|
void viewport_set_vrs_texture(RID p_viewport, RID p_texture);
|
|
|
|
|
2020-04-10 19:18:42 +02:00
|
|
|
void handle_timestamp(String p_timestamp, uint64_t p_cpu_time, uint64_t p_gpu_time);
|
|
|
|
|
2018-07-29 20:09:42 +02:00
|
|
|
void set_default_clear_color(const Color &p_color);
|
2016-10-03 21:33:42 +02:00
|
|
|
void draw_viewports();
|
|
|
|
|
|
|
|
bool free(RID p_rid);
|
|
|
|
|
2021-07-03 01:14:19 +02:00
|
|
|
int get_total_objects_drawn() const;
|
|
|
|
int get_total_vertices_drawn() const;
|
|
|
|
int get_total_draw_calls_used() const;
|
|
|
|
|
2021-06-19 17:44:59 +02:00
|
|
|
// Workaround for setting this on thread.
|
|
|
|
void call_set_vsync_mode(DisplayServer::VSyncMode p_mode, DisplayServer::WindowID p_window);
|
2021-02-09 17:19:03 +01:00
|
|
|
|
2020-12-04 19:26:24 +01:00
|
|
|
RendererViewport();
|
|
|
|
virtual ~RendererViewport() {}
|
2016-10-03 21:33:42 +02:00
|
|
|
};
|
|
|
|
|
2021-10-07 15:46:55 +02:00
|
|
|
#endif // RENDERER_VIEWPORT_H
|