rendering_server_default.h 44 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118
  1. /**************************************************************************/
  2. /* rendering_server_default.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 RENDERING_SERVER_DEFAULT_H
  31. #define RENDERING_SERVER_DEFAULT_H
  32. #include "core/object/worker_thread_pool.h"
  33. #include "core/os/thread.h"
  34. #include "core/templates/command_queue_mt.h"
  35. #include "core/templates/hash_map.h"
  36. #include "renderer_canvas_cull.h"
  37. #include "renderer_scene_cull.h"
  38. #include "renderer_viewport.h"
  39. #include "rendering_server_globals.h"
  40. #include "servers/rendering/renderer_compositor.h"
  41. #include "servers/rendering_server.h"
  42. #include "servers/server_wrap_mt_common.h"
  43. class RenderingServerDefault : public RenderingServer {
  44. enum {
  45. MAX_INSTANCE_CULL = 8192,
  46. MAX_INSTANCE_LIGHTS = 4,
  47. LIGHT_CACHE_DIRTY = -1,
  48. MAX_LIGHTS_CULLED = 256,
  49. MAX_ROOM_CULL = 32,
  50. MAX_EXTERIOR_PORTALS = 128,
  51. MAX_LIGHT_SAMPLERS = 256,
  52. INSTANCE_ROOMLESS_MASK = (1 << 20)
  53. };
  54. static int changes;
  55. RID test_cube;
  56. List<Callable> frame_drawn_callbacks;
  57. static void _changes_changed() {}
  58. uint64_t frame_profile_frame = 0;
  59. Vector<FrameProfileArea> frame_profile;
  60. double frame_setup_time = 0;
  61. //for printing
  62. bool print_gpu_profile = false;
  63. HashMap<String, float> print_gpu_profile_task_time;
  64. uint64_t print_frame_profile_ticks_from = 0;
  65. uint32_t print_frame_profile_frame_count = 0;
  66. mutable CommandQueueMT command_queue;
  67. Thread::ID server_thread = Thread::MAIN_ID;
  68. WorkerThreadPool::TaskID server_task_id = WorkerThreadPool::INVALID_TASK_ID;
  69. bool exit = false;
  70. bool create_thread = false;
  71. void _assign_mt_ids(WorkerThreadPool::TaskID p_pump_task_id);
  72. void _thread_exit();
  73. void _thread_loop();
  74. void _draw(bool p_swap_buffers, double frame_step);
  75. void _run_post_draw_steps();
  76. void _init();
  77. void _finish();
  78. void _free(RID p_rid);
  79. void _call_on_render_thread(const Callable &p_callable);
  80. public:
  81. //if editor is redrawing when it shouldn't, enable this and put a breakpoint in _changes_changed()
  82. //#define DEBUG_CHANGES
  83. #ifdef DEBUG_CHANGES
  84. _FORCE_INLINE_ static void redraw_request() {
  85. changes++;
  86. _changes_changed();
  87. }
  88. #else
  89. _FORCE_INLINE_ static void redraw_request() {
  90. changes++;
  91. }
  92. #endif
  93. #define WRITE_ACTION redraw_request();
  94. #ifdef DEBUG_SYNC
  95. #define SYNC_DEBUG print_line("sync on: " + String(__FUNCTION__));
  96. #else
  97. #define SYNC_DEBUG
  98. #endif
  99. #ifdef DEBUG_ENABLED
  100. #define MAIN_THREAD_SYNC_WARN WARN_PRINT("Call to " + String(__FUNCTION__) + " causing RenderingServer synchronizations on every frame. This significantly affects performance.");
  101. #endif
  102. #include "servers/server_wrap_mt_common.h"
  103. /* TEXTURE API */
  104. #define ServerName RendererTextureStorage
  105. #define server_name RSG::texture_storage
  106. #define FUNCRIDTEX0(m_type) \
  107. virtual RID m_type##_create() override { \
  108. RID ret = RSG::texture_storage->texture_allocate(); \
  109. if (Thread::get_caller_id() == server_thread || RSG::texture_storage->can_create_resources_async()) { \
  110. RSG::texture_storage->m_type##_initialize(ret); \
  111. } else { \
  112. command_queue.push(RSG::texture_storage, &RendererTextureStorage::m_type##_initialize, ret); \
  113. } \
  114. return ret; \
  115. }
  116. #define FUNCRIDTEX1(m_type, m_type1) \
  117. virtual RID m_type##_create(m_type1 p1) override { \
  118. RID ret = RSG::texture_storage->texture_allocate(); \
  119. if (Thread::get_caller_id() == server_thread || RSG::texture_storage->can_create_resources_async()) { \
  120. RSG::texture_storage->m_type##_initialize(ret, p1); \
  121. } else { \
  122. command_queue.push(RSG::texture_storage, &RendererTextureStorage::m_type##_initialize, ret, p1); \
  123. } \
  124. return ret; \
  125. }
  126. #define FUNCRIDTEX2(m_type, m_type1, m_type2) \
  127. virtual RID m_type##_create(m_type1 p1, m_type2 p2) override { \
  128. RID ret = RSG::texture_storage->texture_allocate(); \
  129. if (Thread::get_caller_id() == server_thread || RSG::texture_storage->can_create_resources_async()) { \
  130. RSG::texture_storage->m_type##_initialize(ret, p1, p2); \
  131. } else { \
  132. command_queue.push(RSG::texture_storage, &RendererTextureStorage::m_type##_initialize, ret, p1, p2); \
  133. } \
  134. return ret; \
  135. }
  136. #define FUNCRIDTEX6(m_type, m_type1, m_type2, m_type3, m_type4, m_type5, m_type6) \
  137. virtual RID m_type##_create(m_type1 p1, m_type2 p2, m_type3 p3, m_type4 p4, m_type5 p5, m_type6 p6) override { \
  138. RID ret = RSG::texture_storage->texture_allocate(); \
  139. if (Thread::get_caller_id() == server_thread || RSG::texture_storage->can_create_resources_async()) { \
  140. RSG::texture_storage->m_type##_initialize(ret, p1, p2, p3, p4, p5, p6); \
  141. } else { \
  142. command_queue.push(RSG::texture_storage, &RendererTextureStorage::m_type##_initialize, ret, p1, p2, p3, p4, p5, p6); \
  143. } \
  144. return ret; \
  145. }
  146. //these go pass-through, as they can be called from any thread
  147. FUNCRIDTEX1(texture_2d, const Ref<Image> &)
  148. FUNCRIDTEX2(texture_2d_layered, const Vector<Ref<Image>> &, TextureLayeredType)
  149. FUNCRIDTEX6(texture_3d, Image::Format, int, int, int, bool, const Vector<Ref<Image>> &)
  150. FUNCRIDTEX1(texture_proxy, RID)
  151. // Called directly, not through the command queue.
  152. virtual RID texture_create_from_native_handle(TextureType p_type, Image::Format p_format, uint64_t p_native_handle, int p_width, int p_height, int p_depth, int p_layers = 1, TextureLayeredType p_layered_type = TEXTURE_LAYERED_2D_ARRAY) override {
  153. return RSG::texture_storage->texture_create_from_native_handle(p_type, p_format, p_native_handle, p_width, p_height, p_depth, p_layers, p_layered_type);
  154. }
  155. //these go through command queue if they are in another thread
  156. FUNC3(texture_2d_update, RID, const Ref<Image> &, int)
  157. FUNC2(texture_3d_update, RID, const Vector<Ref<Image>> &)
  158. FUNC2(texture_proxy_update, RID, RID)
  159. //these also go pass-through
  160. FUNCRIDTEX0(texture_2d_placeholder)
  161. FUNCRIDTEX1(texture_2d_layered_placeholder, TextureLayeredType)
  162. FUNCRIDTEX0(texture_3d_placeholder)
  163. FUNC1RC(Ref<Image>, texture_2d_get, RID)
  164. FUNC2RC(Ref<Image>, texture_2d_layer_get, RID, int)
  165. FUNC1RC(Vector<Ref<Image>>, texture_3d_get, RID)
  166. FUNC2(texture_replace, RID, RID)
  167. FUNC3(texture_set_size_override, RID, int, int)
  168. // FIXME: Disabled during Vulkan refactoring, should be ported.
  169. #if 0
  170. FUNC2(texture_bind, RID, uint32_t)
  171. #endif
  172. FUNC3(texture_set_detect_3d_callback, RID, TextureDetectCallback, void *)
  173. FUNC3(texture_set_detect_normal_callback, RID, TextureDetectCallback, void *)
  174. FUNC3(texture_set_detect_roughness_callback, RID, TextureDetectRoughnessCallback, void *)
  175. FUNC2(texture_set_path, RID, const String &)
  176. FUNC1RC(String, texture_get_path, RID)
  177. FUNC1RC(Image::Format, texture_get_format, RID)
  178. FUNC1(texture_debug_usage, List<TextureInfo> *)
  179. FUNC2(texture_set_force_redraw_if_visible, RID, bool)
  180. FUNCRIDTEX2(texture_rd, const RID &, const RS::TextureLayeredType)
  181. FUNC2RC(RID, texture_get_rd_texture, RID, bool)
  182. FUNC2RC(uint64_t, texture_get_native_handle, RID, bool)
  183. /* SHADER API */
  184. #undef ServerName
  185. #undef server_name
  186. #define ServerName RendererMaterialStorage
  187. #define server_name RSG::material_storage
  188. FUNCRIDSPLIT(shader)
  189. FUNC2(shader_set_code, RID, const String &)
  190. FUNC2(shader_set_path_hint, RID, const String &)
  191. FUNC1RC(String, shader_get_code, RID)
  192. FUNC2SC(get_shader_parameter_list, RID, List<PropertyInfo> *)
  193. FUNC4(shader_set_default_texture_parameter, RID, const StringName &, RID, int)
  194. FUNC3RC(RID, shader_get_default_texture_parameter, RID, const StringName &, int)
  195. FUNC2RC(Variant, shader_get_parameter_default, RID, const StringName &)
  196. FUNC1RC(ShaderNativeSourceCode, shader_get_native_source_code, RID)
  197. /* COMMON MATERIAL API */
  198. FUNCRIDSPLIT(material)
  199. FUNC2(material_set_shader, RID, RID)
  200. FUNC3(material_set_param, RID, const StringName &, const Variant &)
  201. FUNC2RC(Variant, material_get_param, RID, const StringName &)
  202. FUNC2(material_set_render_priority, RID, int)
  203. FUNC2(material_set_next_pass, RID, RID)
  204. /* MESH API */
  205. //from now on, calls forwarded to this singleton
  206. #undef ServerName
  207. #undef server_name
  208. #define ServerName RendererMeshStorage
  209. #define server_name RSG::mesh_storage
  210. virtual RID mesh_create_from_surfaces(const Vector<SurfaceData> &p_surfaces, int p_blend_shape_count = 0) override {
  211. RID mesh = RSG::mesh_storage->mesh_allocate();
  212. // TODO once we have RSG::mesh_storage, add can_create_resources_async and call here instead of texture_storage!!
  213. if (Thread::get_caller_id() == server_thread || RSG::texture_storage->can_create_resources_async()) {
  214. if (Thread::get_caller_id() == server_thread) {
  215. command_queue.flush_if_pending();
  216. }
  217. RSG::mesh_storage->mesh_initialize(mesh);
  218. RSG::mesh_storage->mesh_set_blend_shape_count(mesh, p_blend_shape_count);
  219. for (int i = 0; i < p_surfaces.size(); i++) {
  220. RSG::mesh_storage->mesh_add_surface(mesh, p_surfaces[i]);
  221. }
  222. } else {
  223. command_queue.push(RSG::mesh_storage, &RendererMeshStorage::mesh_initialize, mesh);
  224. command_queue.push(RSG::mesh_storage, &RendererMeshStorage::mesh_set_blend_shape_count, mesh, p_blend_shape_count);
  225. for (int i = 0; i < p_surfaces.size(); i++) {
  226. command_queue.push(RSG::mesh_storage, &RendererMeshStorage::mesh_add_surface, mesh, p_surfaces[i]);
  227. }
  228. }
  229. return mesh;
  230. }
  231. FUNC2(mesh_set_blend_shape_count, RID, int)
  232. FUNCRIDSPLIT(mesh)
  233. FUNC2(mesh_add_surface, RID, const SurfaceData &)
  234. FUNC1RC(int, mesh_get_blend_shape_count, RID)
  235. FUNC2(mesh_set_blend_shape_mode, RID, BlendShapeMode)
  236. FUNC1RC(BlendShapeMode, mesh_get_blend_shape_mode, RID)
  237. FUNC4(mesh_surface_update_vertex_region, RID, int, int, const Vector<uint8_t> &)
  238. FUNC4(mesh_surface_update_attribute_region, RID, int, int, const Vector<uint8_t> &)
  239. FUNC4(mesh_surface_update_skin_region, RID, int, int, const Vector<uint8_t> &)
  240. FUNC3(mesh_surface_set_material, RID, int, RID)
  241. FUNC2RC(RID, mesh_surface_get_material, RID, int)
  242. FUNC2RC(SurfaceData, mesh_get_surface, RID, int)
  243. FUNC1RC(int, mesh_get_surface_count, RID)
  244. FUNC2(mesh_set_custom_aabb, RID, const AABB &)
  245. FUNC1RC(AABB, mesh_get_custom_aabb, RID)
  246. FUNC2(mesh_set_path, RID, const String &)
  247. FUNC1RC(String, mesh_get_path, RID)
  248. FUNC2(mesh_set_shadow_mesh, RID, RID)
  249. FUNC1(mesh_clear, RID)
  250. /* MULTIMESH API */
  251. FUNCRIDSPLIT(multimesh)
  252. FUNC5(multimesh_allocate_data, RID, int, MultimeshTransformFormat, bool, bool)
  253. FUNC1RC(int, multimesh_get_instance_count, RID)
  254. FUNC2(multimesh_set_mesh, RID, RID)
  255. FUNC3(multimesh_instance_set_transform, RID, int, const Transform3D &)
  256. FUNC3(multimesh_instance_set_transform_2d, RID, int, const Transform2D &)
  257. FUNC3(multimesh_instance_set_color, RID, int, const Color &)
  258. FUNC3(multimesh_instance_set_custom_data, RID, int, const Color &)
  259. FUNC2(multimesh_set_custom_aabb, RID, const AABB &)
  260. FUNC1RC(AABB, multimesh_get_custom_aabb, RID)
  261. FUNC1RC(RID, multimesh_get_mesh, RID)
  262. FUNC1RC(AABB, multimesh_get_aabb, RID)
  263. FUNC2RC(Transform3D, multimesh_instance_get_transform, RID, int)
  264. FUNC2RC(Transform2D, multimesh_instance_get_transform_2d, RID, int)
  265. FUNC2RC(Color, multimesh_instance_get_color, RID, int)
  266. FUNC2RC(Color, multimesh_instance_get_custom_data, RID, int)
  267. FUNC2(multimesh_set_buffer, RID, const Vector<float> &)
  268. FUNC1RC(Vector<float>, multimesh_get_buffer, RID)
  269. FUNC3(multimesh_set_buffer_interpolated, RID, const Vector<float> &, const Vector<float> &)
  270. FUNC2(multimesh_set_physics_interpolated, RID, bool)
  271. FUNC2(multimesh_set_physics_interpolation_quality, RID, MultimeshPhysicsInterpolationQuality)
  272. FUNC2(multimesh_instance_reset_physics_interpolation, RID, int)
  273. FUNC2(multimesh_set_visible_instances, RID, int)
  274. FUNC1RC(int, multimesh_get_visible_instances, RID)
  275. /* SKELETON API */
  276. FUNCRIDSPLIT(skeleton)
  277. FUNC3(skeleton_allocate_data, RID, int, bool)
  278. FUNC1RC(int, skeleton_get_bone_count, RID)
  279. FUNC3(skeleton_bone_set_transform, RID, int, const Transform3D &)
  280. FUNC2RC(Transform3D, skeleton_bone_get_transform, RID, int)
  281. FUNC3(skeleton_bone_set_transform_2d, RID, int, const Transform2D &)
  282. FUNC2RC(Transform2D, skeleton_bone_get_transform_2d, RID, int)
  283. FUNC2(skeleton_set_base_transform_2d, RID, const Transform2D &)
  284. /* Light API */
  285. #undef ServerName
  286. #undef server_name
  287. #define ServerName RendererLightStorage
  288. #define server_name RSG::light_storage
  289. FUNCRIDSPLIT(directional_light)
  290. FUNCRIDSPLIT(omni_light)
  291. FUNCRIDSPLIT(spot_light)
  292. FUNC2(light_set_color, RID, const Color &)
  293. FUNC3(light_set_param, RID, LightParam, float)
  294. FUNC2(light_set_shadow, RID, bool)
  295. FUNC2(light_set_projector, RID, RID)
  296. FUNC2(light_set_negative, RID, bool)
  297. FUNC2(light_set_cull_mask, RID, uint32_t)
  298. FUNC5(light_set_distance_fade, RID, bool, float, float, float)
  299. FUNC2(light_set_reverse_cull_face_mode, RID, bool)
  300. FUNC2(light_set_bake_mode, RID, LightBakeMode)
  301. FUNC2(light_set_max_sdfgi_cascade, RID, uint32_t)
  302. FUNC2(light_omni_set_shadow_mode, RID, LightOmniShadowMode)
  303. FUNC2(light_directional_set_shadow_mode, RID, LightDirectionalShadowMode)
  304. FUNC2(light_directional_set_blend_splits, RID, bool)
  305. FUNC2(light_directional_set_sky_mode, RID, LightDirectionalSkyMode)
  306. /* PROBE API */
  307. FUNCRIDSPLIT(reflection_probe)
  308. FUNC2(reflection_probe_set_update_mode, RID, ReflectionProbeUpdateMode)
  309. FUNC2(reflection_probe_set_intensity, RID, float)
  310. FUNC2(reflection_probe_set_ambient_color, RID, const Color &)
  311. FUNC2(reflection_probe_set_ambient_energy, RID, float)
  312. FUNC2(reflection_probe_set_ambient_mode, RID, ReflectionProbeAmbientMode)
  313. FUNC2(reflection_probe_set_max_distance, RID, float)
  314. FUNC2(reflection_probe_set_size, RID, const Vector3 &)
  315. FUNC2(reflection_probe_set_origin_offset, RID, const Vector3 &)
  316. FUNC2(reflection_probe_set_as_interior, RID, bool)
  317. FUNC2(reflection_probe_set_enable_box_projection, RID, bool)
  318. FUNC2(reflection_probe_set_enable_shadows, RID, bool)
  319. FUNC2(reflection_probe_set_cull_mask, RID, uint32_t)
  320. FUNC2(reflection_probe_set_reflection_mask, RID, uint32_t)
  321. FUNC2(reflection_probe_set_resolution, RID, int)
  322. FUNC2(reflection_probe_set_mesh_lod_threshold, RID, float)
  323. /* LIGHTMAP */
  324. FUNCRIDSPLIT(lightmap)
  325. FUNC3(lightmap_set_textures, RID, RID, bool)
  326. FUNC2(lightmap_set_probe_bounds, RID, const AABB &)
  327. FUNC2(lightmap_set_probe_interior, RID, bool)
  328. FUNC5(lightmap_set_probe_capture_data, RID, const PackedVector3Array &, const PackedColorArray &, const PackedInt32Array &, const PackedInt32Array &)
  329. FUNC2(lightmap_set_baked_exposure_normalization, RID, float)
  330. FUNC1RC(PackedVector3Array, lightmap_get_probe_capture_points, RID)
  331. FUNC1RC(PackedColorArray, lightmap_get_probe_capture_sh, RID)
  332. FUNC1RC(PackedInt32Array, lightmap_get_probe_capture_tetrahedra, RID)
  333. FUNC1RC(PackedInt32Array, lightmap_get_probe_capture_bsp_tree, RID)
  334. FUNC1(lightmap_set_probe_capture_update_speed, float)
  335. /* Shadow Atlas */
  336. FUNC0R(RID, shadow_atlas_create)
  337. FUNC3(shadow_atlas_set_size, RID, int, bool)
  338. FUNC3(shadow_atlas_set_quadrant_subdivision, RID, int, int)
  339. FUNC2(directional_shadow_atlas_set_size, int, bool)
  340. /* DECAL API */
  341. #undef ServerName
  342. #undef server_name
  343. #define ServerName RendererTextureStorage
  344. #define server_name RSG::texture_storage
  345. FUNCRIDSPLIT(decal)
  346. FUNC2(decal_set_size, RID, const Vector3 &)
  347. FUNC3(decal_set_texture, RID, DecalTexture, RID)
  348. FUNC2(decal_set_emission_energy, RID, float)
  349. FUNC2(decal_set_albedo_mix, RID, float)
  350. FUNC2(decal_set_modulate, RID, const Color &)
  351. FUNC2(decal_set_cull_mask, RID, uint32_t)
  352. FUNC4(decal_set_distance_fade, RID, bool, float, float)
  353. FUNC3(decal_set_fade, RID, float, float)
  354. FUNC2(decal_set_normal_fade, RID, float)
  355. /* BAKED LIGHT API */
  356. //from now on, calls forwarded to this singleton
  357. #undef ServerName
  358. #undef server_name
  359. #define ServerName RendererGI
  360. #define server_name RSG::gi
  361. FUNCRIDSPLIT(voxel_gi)
  362. FUNC8(voxel_gi_allocate_data, RID, const Transform3D &, const AABB &, const Vector3i &, const Vector<uint8_t> &, const Vector<uint8_t> &, const Vector<uint8_t> &, const Vector<int> &)
  363. FUNC1RC(AABB, voxel_gi_get_bounds, RID)
  364. FUNC1RC(Vector3i, voxel_gi_get_octree_size, RID)
  365. FUNC1RC(Vector<uint8_t>, voxel_gi_get_octree_cells, RID)
  366. FUNC1RC(Vector<uint8_t>, voxel_gi_get_data_cells, RID)
  367. FUNC1RC(Vector<uint8_t>, voxel_gi_get_distance_field, RID)
  368. FUNC1RC(Vector<int>, voxel_gi_get_level_counts, RID)
  369. FUNC1RC(Transform3D, voxel_gi_get_to_cell_xform, RID)
  370. FUNC2(voxel_gi_set_dynamic_range, RID, float)
  371. FUNC2(voxel_gi_set_propagation, RID, float)
  372. FUNC2(voxel_gi_set_energy, RID, float)
  373. FUNC2(voxel_gi_set_baked_exposure_normalization, RID, float)
  374. FUNC2(voxel_gi_set_bias, RID, float)
  375. FUNC2(voxel_gi_set_normal_bias, RID, float)
  376. FUNC2(voxel_gi_set_interior, RID, bool)
  377. FUNC2(voxel_gi_set_use_two_bounces, RID, bool)
  378. FUNC0(sdfgi_reset)
  379. /* PARTICLES */
  380. #undef ServerName
  381. #undef server_name
  382. #define ServerName RendererParticlesStorage
  383. #define server_name RSG::particles_storage
  384. FUNCRIDSPLIT(particles)
  385. FUNC2(particles_set_mode, RID, ParticlesMode)
  386. FUNC2(particles_set_emitting, RID, bool)
  387. FUNC1R(bool, particles_get_emitting, RID)
  388. FUNC2(particles_set_amount, RID, int)
  389. FUNC2(particles_set_amount_ratio, RID, float)
  390. FUNC2(particles_set_lifetime, RID, double)
  391. FUNC2(particles_set_one_shot, RID, bool)
  392. FUNC2(particles_set_pre_process_time, RID, double)
  393. FUNC2(particles_set_explosiveness_ratio, RID, float)
  394. FUNC2(particles_set_randomness_ratio, RID, float)
  395. FUNC2(particles_set_custom_aabb, RID, const AABB &)
  396. FUNC2(particles_set_speed_scale, RID, double)
  397. FUNC2(particles_set_use_local_coordinates, RID, bool)
  398. FUNC2(particles_set_process_material, RID, RID)
  399. FUNC2(particles_set_fixed_fps, RID, int)
  400. FUNC2(particles_set_interpolate, RID, bool)
  401. FUNC2(particles_set_fractional_delta, RID, bool)
  402. FUNC1R(bool, particles_is_inactive, RID)
  403. FUNC3(particles_set_trails, RID, bool, float)
  404. FUNC2(particles_set_trail_bind_poses, RID, const Vector<Transform3D> &)
  405. FUNC1(particles_request_process, RID)
  406. FUNC1(particles_restart, RID)
  407. FUNC6(particles_emit, RID, const Transform3D &, const Vector3 &, const Color &, const Color &, uint32_t)
  408. FUNC2(particles_set_subemitter, RID, RID)
  409. FUNC2(particles_set_collision_base_size, RID, float)
  410. FUNC2(particles_set_transform_align, RID, RS::ParticlesTransformAlign)
  411. FUNC2(particles_set_draw_order, RID, RS::ParticlesDrawOrder)
  412. FUNC2(particles_set_draw_passes, RID, int)
  413. FUNC3(particles_set_draw_pass_mesh, RID, int, RID)
  414. FUNC1R(AABB, particles_get_current_aabb, RID)
  415. FUNC2(particles_set_emission_transform, RID, const Transform3D &)
  416. FUNC2(particles_set_emitter_velocity, RID, const Vector3 &)
  417. FUNC2(particles_set_interp_to_end, RID, float)
  418. /* PARTICLES COLLISION */
  419. FUNCRIDSPLIT(particles_collision)
  420. FUNC2(particles_collision_set_collision_type, RID, ParticlesCollisionType)
  421. FUNC2(particles_collision_set_cull_mask, RID, uint32_t)
  422. FUNC2(particles_collision_set_sphere_radius, RID, real_t)
  423. FUNC2(particles_collision_set_box_extents, RID, const Vector3 &)
  424. FUNC2(particles_collision_set_attractor_strength, RID, real_t)
  425. FUNC2(particles_collision_set_attractor_directionality, RID, real_t)
  426. FUNC2(particles_collision_set_attractor_attenuation, RID, real_t)
  427. FUNC2(particles_collision_set_field_texture, RID, RID)
  428. FUNC1(particles_collision_height_field_update, RID)
  429. FUNC2(particles_collision_set_height_field_resolution, RID, ParticlesCollisionHeightfieldResolution)
  430. /* FOG VOLUME */
  431. #undef ServerName
  432. #undef server_name
  433. #define ServerName RendererFog
  434. #define server_name RSG::fog
  435. FUNCRIDSPLIT(fog_volume)
  436. FUNC2(fog_volume_set_shape, RID, FogVolumeShape)
  437. FUNC2(fog_volume_set_size, RID, const Vector3 &)
  438. FUNC2(fog_volume_set_material, RID, RID)
  439. /* VISIBILITY_NOTIFIER */
  440. #undef ServerName
  441. #undef server_name
  442. #define ServerName RendererUtilities
  443. #define server_name RSG::utilities
  444. FUNCRIDSPLIT(visibility_notifier)
  445. FUNC2(visibility_notifier_set_aabb, RID, const AABB &)
  446. FUNC3(visibility_notifier_set_callbacks, RID, const Callable &, const Callable &)
  447. #undef server_name
  448. #undef ServerName
  449. //from now on, calls forwarded to this singleton
  450. #define ServerName RenderingMethod
  451. #define server_name RSG::scene
  452. /* CAMERA API */
  453. FUNCRIDSPLIT(camera)
  454. FUNC4(camera_set_perspective, RID, float, float, float)
  455. FUNC4(camera_set_orthogonal, RID, float, float, float)
  456. FUNC5(camera_set_frustum, RID, float, Vector2, float, float)
  457. FUNC2(camera_set_transform, RID, const Transform3D &)
  458. FUNC2(camera_set_cull_mask, RID, uint32_t)
  459. FUNC2(camera_set_environment, RID, RID)
  460. FUNC2(camera_set_camera_attributes, RID, RID)
  461. FUNC2(camera_set_compositor, RID, RID)
  462. FUNC2(camera_set_use_vertical_aspect, RID, bool)
  463. /* OCCLUDER */
  464. FUNCRIDSPLIT(occluder)
  465. FUNC3(occluder_set_mesh, RID, const PackedVector3Array &, const PackedInt32Array &)
  466. #undef server_name
  467. #undef ServerName
  468. //from now on, calls forwarded to this singleton
  469. #define ServerName RendererViewport
  470. #define server_name RSG::viewport
  471. /* VIEWPORT TARGET API */
  472. FUNCRIDSPLIT(viewport)
  473. FUNC2(viewport_set_use_xr, RID, bool)
  474. FUNC3(viewport_set_size, RID, int, int)
  475. FUNC2(viewport_set_active, RID, bool)
  476. FUNC2(viewport_set_parent_viewport, RID, RID)
  477. FUNC2(viewport_set_clear_mode, RID, ViewportClearMode)
  478. FUNC3(viewport_attach_to_screen, RID, const Rect2 &, int)
  479. FUNC2(viewport_set_render_direct_to_screen, RID, bool)
  480. FUNC2(viewport_set_scaling_3d_mode, RID, ViewportScaling3DMode)
  481. FUNC2(viewport_set_scaling_3d_scale, RID, float)
  482. FUNC2(viewport_set_fsr_sharpness, RID, float)
  483. FUNC2(viewport_set_texture_mipmap_bias, RID, float)
  484. FUNC2(viewport_set_update_mode, RID, ViewportUpdateMode)
  485. FUNC1RC(ViewportUpdateMode, viewport_get_update_mode, RID)
  486. FUNC1RC(RID, viewport_get_render_target, RID)
  487. FUNC1RC(RID, viewport_get_texture, RID)
  488. FUNC2(viewport_set_disable_2d, RID, bool)
  489. FUNC2(viewport_set_environment_mode, RID, ViewportEnvironmentMode)
  490. FUNC2(viewport_set_disable_3d, RID, bool)
  491. FUNC2(viewport_set_canvas_cull_mask, RID, uint32_t)
  492. FUNC2(viewport_attach_camera, RID, RID)
  493. FUNC2(viewport_set_scenario, RID, RID)
  494. FUNC2(viewport_attach_canvas, RID, RID)
  495. FUNC2(viewport_remove_canvas, RID, RID)
  496. FUNC3(viewport_set_canvas_transform, RID, RID, const Transform2D &)
  497. FUNC2(viewport_set_transparent_background, RID, bool)
  498. FUNC2(viewport_set_use_hdr_2d, RID, bool)
  499. FUNC1RC(bool, viewport_is_using_hdr_2d, RID)
  500. FUNC2(viewport_set_snap_2d_transforms_to_pixel, RID, bool)
  501. FUNC2(viewport_set_snap_2d_vertices_to_pixel, RID, bool)
  502. FUNC2(viewport_set_default_canvas_item_texture_filter, RID, CanvasItemTextureFilter)
  503. FUNC2(viewport_set_default_canvas_item_texture_repeat, RID, CanvasItemTextureRepeat)
  504. FUNC2(viewport_set_global_canvas_transform, RID, const Transform2D &)
  505. FUNC4(viewport_set_canvas_stacking, RID, RID, int, int)
  506. FUNC3(viewport_set_positional_shadow_atlas_size, RID, int, bool)
  507. FUNC3(viewport_set_sdf_oversize_and_scale, RID, ViewportSDFOversize, ViewportSDFScale)
  508. FUNC3(viewport_set_positional_shadow_atlas_quadrant_subdivision, RID, int, int)
  509. FUNC2(viewport_set_msaa_2d, RID, ViewportMSAA)
  510. FUNC2(viewport_set_msaa_3d, RID, ViewportMSAA)
  511. FUNC2(viewport_set_screen_space_aa, RID, ViewportScreenSpaceAA)
  512. FUNC2(viewport_set_use_taa, RID, bool)
  513. FUNC2(viewport_set_use_debanding, RID, bool)
  514. FUNC2(viewport_set_use_occlusion_culling, RID, bool)
  515. FUNC1(viewport_set_occlusion_rays_per_thread, int)
  516. FUNC1(viewport_set_occlusion_culling_build_quality, ViewportOcclusionCullingBuildQuality)
  517. FUNC2(viewport_set_mesh_lod_threshold, RID, float)
  518. FUNC3R(int, viewport_get_render_info, RID, ViewportRenderInfoType, ViewportRenderInfo)
  519. FUNC2(viewport_set_debug_draw, RID, ViewportDebugDraw)
  520. FUNC2(viewport_set_measure_render_time, RID, bool)
  521. FUNC1RC(double, viewport_get_measured_render_time_cpu, RID)
  522. FUNC1RC(double, viewport_get_measured_render_time_gpu, RID)
  523. FUNC1RC(RID, viewport_find_from_screen_attachment, DisplayServer::WindowID)
  524. FUNC2(call_set_vsync_mode, DisplayServer::VSyncMode, DisplayServer::WindowID)
  525. FUNC2(viewport_set_vrs_mode, RID, ViewportVRSMode)
  526. FUNC2(viewport_set_vrs_update_mode, RID, ViewportVRSUpdateMode)
  527. FUNC2(viewport_set_vrs_texture, RID, RID)
  528. /* COMPOSITOR EFFECT */
  529. #undef server_name
  530. #undef ServerName
  531. //from now on, calls forwarded to this singleton
  532. #define ServerName RenderingMethod
  533. #define server_name RSG::scene
  534. FUNCRIDSPLIT(compositor_effect)
  535. FUNC2(compositor_effect_set_enabled, RID, bool)
  536. FUNC3(compositor_effect_set_callback, RID, CompositorEffectCallbackType, const Callable &)
  537. FUNC3(compositor_effect_set_flag, RID, CompositorEffectFlags, bool)
  538. /* COMPOSITOR */
  539. FUNC2(compositor_set_compositor_effects, RID, const TypedArray<RID> &)
  540. FUNCRIDSPLIT(compositor)
  541. /* ENVIRONMENT API */
  542. FUNC1(voxel_gi_set_quality, VoxelGIQuality)
  543. /* SKY API */
  544. FUNCRIDSPLIT(sky)
  545. FUNC2(sky_set_radiance_size, RID, int)
  546. FUNC2(sky_set_mode, RID, SkyMode)
  547. FUNC2(sky_set_material, RID, RID)
  548. FUNC4R(Ref<Image>, sky_bake_panorama, RID, float, bool, const Size2i &)
  549. /* ENVIRONMENT */
  550. FUNCRIDSPLIT(environment)
  551. FUNC2(environment_set_background, RID, EnvironmentBG)
  552. FUNC2(environment_set_sky, RID, RID)
  553. FUNC2(environment_set_sky_custom_fov, RID, float)
  554. FUNC2(environment_set_sky_orientation, RID, const Basis &)
  555. FUNC2(environment_set_bg_color, RID, const Color &)
  556. FUNC3(environment_set_bg_energy, RID, float, float)
  557. FUNC2(environment_set_canvas_max_layer, RID, int)
  558. FUNC6(environment_set_ambient_light, RID, const Color &, EnvironmentAmbientSource, float, float, EnvironmentReflectionSource)
  559. // FIXME: Disabled during Vulkan refactoring, should be ported.
  560. #if 0
  561. FUNC2(environment_set_camera_feed_id, RID, int)
  562. #endif
  563. FUNC6(environment_set_ssr, RID, bool, int, float, float, float)
  564. FUNC1(environment_set_ssr_roughness_quality, EnvironmentSSRRoughnessQuality)
  565. FUNC10(environment_set_ssao, RID, bool, float, float, float, float, float, float, float, float)
  566. FUNC6(environment_set_ssao_quality, EnvironmentSSAOQuality, bool, float, int, float, float)
  567. FUNC6(environment_set_ssil, RID, bool, float, float, float, float)
  568. FUNC6(environment_set_ssil_quality, EnvironmentSSILQuality, bool, float, int, float, float)
  569. FUNC13(environment_set_glow, RID, bool, Vector<float>, float, float, float, float, EnvironmentGlowBlendMode, float, float, float, float, RID)
  570. FUNC1(environment_glow_set_use_bicubic_upscale, bool)
  571. FUNC4(environment_set_tonemap, RID, EnvironmentToneMapper, float, float)
  572. FUNC7(environment_set_adjustment, RID, bool, float, float, float, bool, RID)
  573. FUNC11(environment_set_fog, RID, bool, const Color &, float, float, float, float, float, float, float, EnvironmentFogMode)
  574. FUNC4(environment_set_fog_depth, RID, float, float, float)
  575. FUNC14(environment_set_volumetric_fog, RID, bool, float, const Color &, const Color &, float, float, float, float, float, bool, float, float, float)
  576. FUNC2(environment_set_volumetric_fog_volume_size, int, int)
  577. FUNC1(environment_set_volumetric_fog_filter_active, bool)
  578. FUNC11(environment_set_sdfgi, RID, bool, int, float, EnvironmentSDFGIYScale, bool, float, bool, float, float, float)
  579. FUNC1(environment_set_sdfgi_ray_count, EnvironmentSDFGIRayCount)
  580. FUNC1(environment_set_sdfgi_frames_to_converge, EnvironmentSDFGIFramesToConverge)
  581. FUNC1(environment_set_sdfgi_frames_to_update_light, EnvironmentSDFGIFramesToUpdateLight)
  582. FUNC3R(Ref<Image>, environment_bake_panorama, RID, bool, const Size2i &)
  583. FUNC3(screen_space_roughness_limiter_set_active, bool, float, float)
  584. FUNC1(sub_surface_scattering_set_quality, SubSurfaceScatteringQuality)
  585. FUNC2(sub_surface_scattering_set_scale, float, float)
  586. FUNC1(positional_soft_shadow_filter_set_quality, ShadowQuality);
  587. FUNC1(directional_soft_shadow_filter_set_quality, ShadowQuality);
  588. FUNC1(decals_set_filter, RS::DecalFilter);
  589. FUNC1(light_projectors_set_filter, RS::LightProjectorFilter);
  590. FUNC1(lightmaps_set_bicubic_filter, bool);
  591. /* CAMERA ATTRIBUTES */
  592. #undef server_name
  593. #undef ServerName
  594. //from now on, calls forwarded to this singleton
  595. #define ServerName RendererCameraAttributes
  596. #define server_name RSG::camera_attributes
  597. FUNCRIDSPLIT(camera_attributes)
  598. FUNC2(camera_attributes_set_dof_blur_quality, DOFBlurQuality, bool)
  599. FUNC1(camera_attributes_set_dof_blur_bokeh_shape, DOFBokehShape)
  600. FUNC8(camera_attributes_set_dof_blur, RID, bool, float, float, bool, float, float, float)
  601. FUNC3(camera_attributes_set_exposure, RID, float, float)
  602. FUNC6(camera_attributes_set_auto_exposure, RID, bool, float, float, float, float)
  603. /* SCENARIO API */
  604. #undef server_name
  605. #undef ServerName
  606. #define ServerName RenderingMethod
  607. #define server_name RSG::scene
  608. FUNCRIDSPLIT(scenario)
  609. FUNC2(scenario_set_environment, RID, RID)
  610. FUNC2(scenario_set_camera_attributes, RID, RID)
  611. FUNC2(scenario_set_fallback_environment, RID, RID)
  612. FUNC2(scenario_set_compositor, RID, RID)
  613. /* INSTANCING API */
  614. FUNCRIDSPLIT(instance)
  615. FUNC2(instance_set_base, RID, RID)
  616. FUNC2(instance_set_scenario, RID, RID)
  617. FUNC2(instance_set_layer_mask, RID, uint32_t)
  618. FUNC3(instance_set_pivot_data, RID, float, bool)
  619. FUNC2(instance_set_transform, RID, const Transform3D &)
  620. FUNC2(instance_set_interpolated, RID, bool)
  621. FUNC1(instance_reset_physics_interpolation, RID)
  622. FUNC2(instance_attach_object_instance_id, RID, ObjectID)
  623. FUNC3(instance_set_blend_shape_weight, RID, int, float)
  624. FUNC3(instance_set_surface_override_material, RID, int, RID)
  625. FUNC2(instance_set_visible, RID, bool)
  626. FUNC2(instance_set_custom_aabb, RID, AABB)
  627. FUNC2(instance_attach_skeleton, RID, RID)
  628. FUNC2(instance_set_extra_visibility_margin, RID, real_t)
  629. FUNC2(instance_set_visibility_parent, RID, RID)
  630. FUNC2(instance_set_ignore_culling, RID, bool)
  631. // don't use these in a game!
  632. FUNC2RC(Vector<ObjectID>, instances_cull_aabb, const AABB &, RID)
  633. FUNC3RC(Vector<ObjectID>, instances_cull_ray, const Vector3 &, const Vector3 &, RID)
  634. FUNC2RC(Vector<ObjectID>, instances_cull_convex, const Vector<Plane> &, RID)
  635. FUNC3(instance_geometry_set_flag, RID, InstanceFlags, bool)
  636. FUNC2(instance_geometry_set_cast_shadows_setting, RID, ShadowCastingSetting)
  637. FUNC2(instance_geometry_set_material_override, RID, RID)
  638. FUNC2(instance_geometry_set_material_overlay, RID, RID)
  639. FUNC6(instance_geometry_set_visibility_range, RID, float, float, float, float, VisibilityRangeFadeMode)
  640. FUNC4(instance_geometry_set_lightmap, RID, RID, const Rect2 &, int)
  641. FUNC2(instance_geometry_set_lod_bias, RID, float)
  642. FUNC2(instance_geometry_set_transparency, RID, float)
  643. FUNC3(instance_geometry_set_shader_parameter, RID, const StringName &, const Variant &)
  644. FUNC2RC(Variant, instance_geometry_get_shader_parameter, RID, const StringName &)
  645. FUNC2RC(Variant, instance_geometry_get_shader_parameter_default_value, RID, const StringName &)
  646. FUNC2C(instance_geometry_get_shader_parameter_list, RID, List<PropertyInfo> *)
  647. FUNC3R(TypedArray<Image>, bake_render_uv2, RID, const TypedArray<RID> &, const Size2i &)
  648. FUNC1(gi_set_use_half_resolution, bool)
  649. #undef server_name
  650. #undef ServerName
  651. //from now on, calls forwarded to this singleton
  652. #define ServerName RendererCanvasCull
  653. #define server_name RSG::canvas
  654. /* CANVAS (2D) */
  655. FUNCRIDSPLIT(canvas)
  656. FUNC3(canvas_set_item_mirroring, RID, RID, const Point2 &)
  657. FUNC3(canvas_set_item_repeat, RID, const Point2 &, int)
  658. FUNC2(canvas_set_modulate, RID, const Color &)
  659. FUNC3(canvas_set_parent, RID, RID, float)
  660. FUNC1(canvas_set_disable_scale, bool)
  661. FUNCRIDSPLIT(canvas_texture)
  662. FUNC3(canvas_texture_set_channel, RID, CanvasTextureChannel, RID)
  663. FUNC3(canvas_texture_set_shading_parameters, RID, const Color &, float)
  664. FUNC2(canvas_texture_set_texture_filter, RID, CanvasItemTextureFilter)
  665. FUNC2(canvas_texture_set_texture_repeat, RID, CanvasItemTextureRepeat)
  666. FUNCRIDSPLIT(canvas_item)
  667. FUNC2(canvas_item_set_parent, RID, RID)
  668. FUNC2(canvas_item_set_default_texture_filter, RID, CanvasItemTextureFilter)
  669. FUNC2(canvas_item_set_default_texture_repeat, RID, CanvasItemTextureRepeat)
  670. FUNC2(canvas_item_set_visible, RID, bool)
  671. FUNC2(canvas_item_set_light_mask, RID, int)
  672. FUNC2(canvas_item_set_visibility_layer, RID, uint32_t)
  673. FUNC2(canvas_item_set_update_when_visible, RID, bool)
  674. FUNC2(canvas_item_set_transform, RID, const Transform2D &)
  675. FUNC2(canvas_item_set_clip, RID, bool)
  676. FUNC2(canvas_item_set_distance_field_mode, RID, bool)
  677. FUNC3(canvas_item_set_custom_rect, RID, bool, const Rect2 &)
  678. FUNC2(canvas_item_set_modulate, RID, const Color &)
  679. FUNC2(canvas_item_set_self_modulate, RID, const Color &)
  680. FUNC2(canvas_item_set_draw_behind_parent, RID, bool)
  681. FUNC6(canvas_item_add_line, RID, const Point2 &, const Point2 &, const Color &, float, bool)
  682. FUNC5(canvas_item_add_polyline, RID, const Vector<Point2> &, const Vector<Color> &, float, bool)
  683. FUNC5(canvas_item_add_multiline, RID, const Vector<Point2> &, const Vector<Color> &, float, bool)
  684. FUNC4(canvas_item_add_rect, RID, const Rect2 &, const Color &, bool)
  685. FUNC5(canvas_item_add_circle, RID, const Point2 &, float, const Color &, bool)
  686. FUNC6(canvas_item_add_texture_rect, RID, const Rect2 &, RID, bool, const Color &, bool)
  687. FUNC7(canvas_item_add_texture_rect_region, RID, const Rect2 &, RID, const Rect2 &, const Color &, bool, bool)
  688. FUNC8(canvas_item_add_msdf_texture_rect_region, RID, const Rect2 &, RID, const Rect2 &, const Color &, int, float, float)
  689. FUNC5(canvas_item_add_lcd_texture_rect_region, RID, const Rect2 &, RID, const Rect2 &, const Color &)
  690. FUNC10(canvas_item_add_nine_patch, RID, const Rect2 &, const Rect2 &, RID, const Vector2 &, const Vector2 &, NinePatchAxisMode, NinePatchAxisMode, bool, const Color &)
  691. FUNC5(canvas_item_add_primitive, RID, const Vector<Point2> &, const Vector<Color> &, const Vector<Point2> &, RID)
  692. FUNC5(canvas_item_add_polygon, RID, const Vector<Point2> &, const Vector<Color> &, const Vector<Point2> &, RID)
  693. FUNC9(canvas_item_add_triangle_array, RID, const Vector<int> &, const Vector<Point2> &, const Vector<Color> &, const Vector<Point2> &, const Vector<int> &, const Vector<float> &, RID, int)
  694. FUNC5(canvas_item_add_mesh, RID, const RID &, const Transform2D &, const Color &, RID)
  695. FUNC3(canvas_item_add_multimesh, RID, RID, RID)
  696. FUNC3(canvas_item_add_particles, RID, RID, RID)
  697. FUNC2(canvas_item_add_set_transform, RID, const Transform2D &)
  698. FUNC2(canvas_item_add_clip_ignore, RID, bool)
  699. FUNC5(canvas_item_add_animation_slice, RID, double, double, double, double)
  700. FUNC2(canvas_item_set_sort_children_by_y, RID, bool)
  701. FUNC2(canvas_item_set_z_index, RID, int)
  702. FUNC2(canvas_item_set_z_as_relative_to_parent, RID, bool)
  703. FUNC3(canvas_item_set_copy_to_backbuffer, RID, bool, const Rect2 &)
  704. FUNC2(canvas_item_attach_skeleton, RID, RID)
  705. FUNC1(canvas_item_clear, RID)
  706. FUNC2(canvas_item_set_draw_index, RID, int)
  707. FUNC2(canvas_item_set_material, RID, RID)
  708. FUNC2(canvas_item_set_use_parent_material, RID, bool)
  709. FUNC5(canvas_item_set_visibility_notifier, RID, bool, const Rect2 &, const Callable &, const Callable &)
  710. FUNC6(canvas_item_set_canvas_group_mode, RID, CanvasGroupMode, float, bool, float, bool)
  711. FUNC1(canvas_item_set_debug_redraw, bool)
  712. FUNC0RC(bool, canvas_item_get_debug_redraw)
  713. FUNC2(canvas_item_set_interpolated, RID, bool)
  714. FUNC1(canvas_item_reset_physics_interpolation, RID)
  715. FUNC2(canvas_item_transform_physics_interpolation, RID, const Transform2D &)
  716. FUNCRIDSPLIT(canvas_light)
  717. FUNC2(canvas_light_set_mode, RID, CanvasLightMode)
  718. FUNC2(canvas_light_attach_to_canvas, RID, RID)
  719. FUNC2(canvas_light_set_enabled, RID, bool)
  720. FUNC2(canvas_light_set_texture_scale, RID, float)
  721. FUNC2(canvas_light_set_transform, RID, const Transform2D &)
  722. FUNC2(canvas_light_set_texture, RID, RID)
  723. FUNC2(canvas_light_set_texture_offset, RID, const Vector2 &)
  724. FUNC2(canvas_light_set_color, RID, const Color &)
  725. FUNC2(canvas_light_set_height, RID, float)
  726. FUNC2(canvas_light_set_energy, RID, float)
  727. FUNC3(canvas_light_set_z_range, RID, int, int)
  728. FUNC3(canvas_light_set_layer_range, RID, int, int)
  729. FUNC2(canvas_light_set_item_cull_mask, RID, int)
  730. FUNC2(canvas_light_set_item_shadow_cull_mask, RID, int)
  731. FUNC2(canvas_light_set_directional_distance, RID, float)
  732. FUNC2(canvas_light_set_blend_mode, RID, CanvasLightBlendMode)
  733. FUNC2(canvas_light_set_shadow_enabled, RID, bool)
  734. FUNC2(canvas_light_set_shadow_filter, RID, CanvasLightShadowFilter)
  735. FUNC2(canvas_light_set_shadow_color, RID, const Color &)
  736. FUNC2(canvas_light_set_shadow_smooth, RID, float)
  737. FUNC2(canvas_light_set_interpolated, RID, bool)
  738. FUNC1(canvas_light_reset_physics_interpolation, RID)
  739. FUNC2(canvas_light_transform_physics_interpolation, RID, const Transform2D &)
  740. FUNCRIDSPLIT(canvas_light_occluder)
  741. FUNC2(canvas_light_occluder_attach_to_canvas, RID, RID)
  742. FUNC2(canvas_light_occluder_set_enabled, RID, bool)
  743. FUNC2(canvas_light_occluder_set_polygon, RID, RID)
  744. FUNC2(canvas_light_occluder_set_as_sdf_collision, RID, bool)
  745. FUNC2(canvas_light_occluder_set_transform, RID, const Transform2D &)
  746. FUNC2(canvas_light_occluder_set_light_mask, RID, int)
  747. FUNC2(canvas_light_occluder_set_interpolated, RID, bool)
  748. FUNC1(canvas_light_occluder_reset_physics_interpolation, RID)
  749. FUNC2(canvas_light_occluder_transform_physics_interpolation, RID, const Transform2D &)
  750. FUNCRIDSPLIT(canvas_occluder_polygon)
  751. FUNC3(canvas_occluder_polygon_set_shape, RID, const Vector<Vector2> &, bool)
  752. FUNC2(canvas_occluder_polygon_set_cull_mode, RID, CanvasOccluderPolygonCullMode)
  753. FUNC1(canvas_set_shadow_texture_size, int)
  754. FUNC1R(Rect2, _debug_canvas_item_get_rect, RID)
  755. /* GLOBAL SHADER UNIFORMS */
  756. #undef server_name
  757. #undef ServerName
  758. //from now on, calls forwarded to this singleton
  759. #define ServerName RendererMaterialStorage
  760. #define server_name RSG::material_storage
  761. FUNC3(global_shader_parameter_add, const StringName &, GlobalShaderParameterType, const Variant &)
  762. FUNC1(global_shader_parameter_remove, const StringName &)
  763. FUNC0RC(Vector<StringName>, global_shader_parameter_get_list)
  764. FUNC2(global_shader_parameter_set, const StringName &, const Variant &)
  765. FUNC2(global_shader_parameter_set_override, const StringName &, const Variant &)
  766. FUNC1RC(GlobalShaderParameterType, global_shader_parameter_get_type, const StringName &)
  767. FUNC1RC(Variant, global_shader_parameter_get, const StringName &)
  768. FUNC1(global_shader_parameters_load_settings, bool)
  769. FUNC0(global_shader_parameters_clear)
  770. /* COMPOSITOR */
  771. #undef server_name
  772. #undef ServerName
  773. #define ServerName RendererCompositor
  774. #define server_name RSG::rasterizer
  775. FUNC4S(set_boot_image, const Ref<Image> &, const Color &, bool, bool)
  776. /* STATUS INFORMATION */
  777. #undef server_name
  778. #undef ServerName
  779. /* UTILITIES */
  780. #define ServerName RendererUtilities
  781. #define server_name RSG::utilities
  782. FUNC0RC(String, get_video_adapter_name)
  783. FUNC0RC(String, get_video_adapter_vendor)
  784. FUNC0RC(String, get_video_adapter_api_version)
  785. #undef server_name
  786. #undef ServerName
  787. #undef WRITE_ACTION
  788. #undef SYNC_DEBUG
  789. #ifdef DEBUG_ENABLED
  790. #undef MAIN_THREAD_SYNC_WARN
  791. #endif
  792. virtual uint64_t get_rendering_info(RenderingInfo p_info) override;
  793. virtual RenderingDevice::DeviceType get_video_adapter_type() const override;
  794. virtual void set_frame_profiling_enabled(bool p_enable) override;
  795. virtual Vector<FrameProfileArea> get_frame_profile() override;
  796. virtual uint64_t get_frame_profile_frame() override;
  797. virtual RID get_test_cube() override;
  798. /* FREE */
  799. virtual void free(RID p_rid) override {
  800. if (Thread::get_caller_id() == server_thread) {
  801. command_queue.flush_if_pending();
  802. _free(p_rid);
  803. } else {
  804. command_queue.push(this, &RenderingServerDefault::_free, p_rid);
  805. }
  806. }
  807. /* INTERPOLATION */
  808. virtual void set_physics_interpolation_enabled(bool p_enabled) override;
  809. /* EVENT QUEUING */
  810. virtual void request_frame_drawn_callback(const Callable &p_callable) override;
  811. virtual void draw(bool p_swap_buffers, double frame_step) override;
  812. virtual void sync() override;
  813. virtual bool has_changed() const override;
  814. virtual void init() override;
  815. virtual void finish() override;
  816. virtual void tick() override;
  817. virtual void pre_draw(bool p_will_draw) override;
  818. virtual bool is_on_render_thread() override {
  819. return Thread::get_caller_id() == server_thread;
  820. }
  821. virtual void call_on_render_thread(const Callable &p_callable) override {
  822. if (Thread::get_caller_id() == server_thread) {
  823. command_queue.flush_if_pending();
  824. p_callable.call();
  825. } else {
  826. command_queue.push(this, &RenderingServerDefault::_call_on_render_thread, p_callable);
  827. }
  828. }
  829. /* TESTING */
  830. virtual double get_frame_setup_time_cpu() const override;
  831. virtual Color get_default_clear_color() override;
  832. virtual void set_default_clear_color(const Color &p_color) override;
  833. #ifndef DISABLE_DEPRECATED
  834. virtual bool has_feature(Features p_feature) const override;
  835. #endif
  836. virtual bool has_os_feature(const String &p_feature) const override;
  837. virtual void set_debug_generate_wireframes(bool p_generate) override;
  838. virtual bool is_low_end() const override;
  839. virtual void sdfgi_set_debug_probe_select(const Vector3 &p_position, const Vector3 &p_dir) override;
  840. virtual void set_print_gpu_profile(bool p_enable) override;
  841. virtual Size2i get_maximum_viewport_size() const override;
  842. RenderingServerDefault(bool p_create_thread = false);
  843. ~RenderingServerDefault();
  844. };
  845. #endif // RENDERING_SERVER_DEFAULT_H