| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-03-28 13:19:05 +01:00
										 |  |  | /*  rendering_server_raster.h                                            */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-01-01 11:16:22 +01:00
										 |  |  | /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03: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.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #ifndef RENDERING_SERVER_RASTER_H
 | 
					
						
							|  |  |  | #define RENDERING_SERVER_RASTER_H
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/math/octree.h"
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #include "rendering_server_canvas.h"
 | 
					
						
							|  |  |  | #include "rendering_server_globals.h"
 | 
					
						
							|  |  |  | #include "rendering_server_scene.h"
 | 
					
						
							|  |  |  | #include "rendering_server_viewport.h"
 | 
					
						
							|  |  |  | #include "servers/rendering/rasterizer.h"
 | 
					
						
							|  |  |  | #include "servers/rendering_server.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | class RenderingServerRaster : public RenderingServer { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	enum { | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 		MAX_INSTANCE_CULL = 8192, | 
					
						
							|  |  |  | 		MAX_INSTANCE_LIGHTS = 4, | 
					
						
							|  |  |  | 		LIGHT_CACHE_DIRTY = -1, | 
					
						
							|  |  |  | 		MAX_LIGHTS_CULLED = 256, | 
					
						
							|  |  |  | 		MAX_ROOM_CULL = 32, | 
					
						
							|  |  |  | 		MAX_EXTERIOR_PORTALS = 128, | 
					
						
							|  |  |  | 		MAX_LIGHT_SAMPLERS = 256, | 
					
						
							|  |  |  | 		INSTANCE_ROOMLESS_MASK = (1 << 20) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 23:36:37 -03:00
										 |  |  | 	static int changes; | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 	RID test_cube; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-07 18:06:57 -03:00
										 |  |  | 	int black_margin[4]; | 
					
						
							|  |  |  | 	RID black_image[4]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-09 00:23:50 -03:00
										 |  |  | 	struct FrameDrawnCallbacks { | 
					
						
							|  |  |  | 		ObjectID object; | 
					
						
							|  |  |  | 		StringName method; | 
					
						
							|  |  |  | 		Variant param; | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	List<FrameDrawnCallbacks> frame_drawn_callbacks; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-07 18:06:57 -03:00
										 |  |  | 	void _draw_margins(); | 
					
						
							| 
									
										
										
										
											2017-09-23 17:27:29 -03:00
										 |  |  | 	static void _changes_changed() {} | 
					
						
							| 
									
										
										
										
											2017-08-07 18:06:57 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-20 17:58:06 -03:00
										 |  |  | 	uint64_t frame_profile_frame; | 
					
						
							|  |  |  | 	Vector<FrameProfileArea> frame_profile; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2017-12-06 21:36:34 +01:00
										 |  |  | 	//if editor is redrawing when it shouldn't, enable this and put a breakpoint in _changes_changed()
 | 
					
						
							|  |  |  | 	//#define DEBUG_CHANGES
 | 
					
						
							| 
									
										
										
										
											2017-09-23 17:27:29 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifdef DEBUG_CHANGES
 | 
					
						
							|  |  |  | 	_FORCE_INLINE_ static void redraw_request() { | 
					
						
							|  |  |  | 		changes++; | 
					
						
							|  |  |  | 		_changes_changed(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define DISPLAY_CHANGED \
 | 
					
						
							|  |  |  | 	changes++;          \ | 
					
						
							|  |  |  | 	_changes_changed(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2017-04-06 23:36:37 -03:00
										 |  |  | 	_FORCE_INLINE_ static void redraw_request() { changes++; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-23 17:27:29 -03:00
										 |  |  | #define DISPLAY_CHANGED \
 | 
					
						
							|  |  |  | 	changes++; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #define BIND0R(m_r, m_name) \
 | 
					
						
							|  |  |  | 	m_r m_name() { return BINDBASE->m_name(); } | 
					
						
							| 
									
										
										
										
											2020-04-16 23:52:00 -03:00
										 |  |  | #define BIND0RC(m_r, m_name) \
 | 
					
						
							|  |  |  | 	m_r m_name() const { return BINDBASE->m_name(); } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #define BIND1R(m_r, m_name, m_type1) \
 | 
					
						
							|  |  |  | 	m_r m_name(m_type1 arg1) { return BINDBASE->m_name(arg1); } | 
					
						
							|  |  |  | #define BIND1RC(m_r, m_name, m_type1) \
 | 
					
						
							|  |  |  | 	m_r m_name(m_type1 arg1) const { return BINDBASE->m_name(arg1); } | 
					
						
							| 
									
										
										
										
											2017-06-11 15:52:03 -03:00
										 |  |  | #define BIND2R(m_r, m_name, m_type1, m_type2) \
 | 
					
						
							|  |  |  | 	m_r m_name(m_type1 arg1, m_type2 arg2) { return BINDBASE->m_name(arg1, arg2); } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #define BIND2RC(m_r, m_name, m_type1, m_type2) \
 | 
					
						
							|  |  |  | 	m_r m_name(m_type1 arg1, m_type2 arg2) const { return BINDBASE->m_name(arg1, arg2); } | 
					
						
							| 
									
										
										
										
											2020-05-01 09:34:23 -03:00
										 |  |  | #define BIND3R(m_r, m_name, m_type1, m_type2, m_type3) \
 | 
					
						
							|  |  |  | 	m_r m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3) { return BINDBASE->m_name(arg1, arg2, arg3); } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #define BIND3RC(m_r, m_name, m_type1, m_type2, m_type3) \
 | 
					
						
							|  |  |  | 	m_r m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3) const { return BINDBASE->m_name(arg1, arg2, arg3); } | 
					
						
							| 
									
										
										
										
											2020-05-01 09:34:23 -03:00
										 |  |  | #define BIND4R(m_r, m_name, m_type1, m_type2, m_type3, m_type4) \
 | 
					
						
							|  |  |  | 	m_r m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3, m_type4 arg4) { return BINDBASE->m_name(arg1, arg2, arg3, arg4); } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #define BIND4RC(m_r, m_name, m_type1, m_type2, m_type3, m_type4) \
 | 
					
						
							|  |  |  | 	m_r m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3, m_type4 arg4) const { return BINDBASE->m_name(arg1, arg2, arg3, arg4); } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-16 23:52:00 -03:00
										 |  |  | #define BIND0(m_name) \
 | 
					
						
							|  |  |  | 	void m_name() { DISPLAY_CHANGED BINDBASE->m_name(); } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #define BIND1(m_name, m_type1) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1) { DISPLAY_CHANGED BINDBASE->m_name(arg1); } | 
					
						
							| 
									
										
										
										
											2020-04-16 23:52:00 -03:00
										 |  |  | #define BIND1C(m_name, m_type1) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1) const { DISPLAY_CHANGED BINDBASE->m_name(arg1); } | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | #define BIND2(m_name, m_type1, m_type2) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1, m_type2 arg2) { DISPLAY_CHANGED BINDBASE->m_name(arg1, arg2); } | 
					
						
							|  |  |  | #define BIND2C(m_name, m_type1, m_type2) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1, m_type2 arg2) const { BINDBASE->m_name(arg1, arg2); } | 
					
						
							|  |  |  | #define BIND3(m_name, m_type1, m_type2, m_type3) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3) { DISPLAY_CHANGED BINDBASE->m_name(arg1, arg2, arg3); } | 
					
						
							|  |  |  | #define BIND4(m_name, m_type1, m_type2, m_type3, m_type4) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3, m_type4 arg4) { DISPLAY_CHANGED BINDBASE->m_name(arg1, arg2, arg3, arg4); } | 
					
						
							|  |  |  | #define BIND5(m_name, m_type1, m_type2, m_type3, m_type4, m_type5) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3, m_type4 arg4, m_type5 arg5) { DISPLAY_CHANGED BINDBASE->m_name(arg1, arg2, arg3, arg4, arg5); } | 
					
						
							|  |  |  | #define BIND6(m_name, m_type1, m_type2, m_type3, m_type4, m_type5, m_type6) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3, m_type4 arg4, m_type5 arg5, m_type6 arg6) { DISPLAY_CHANGED BINDBASE->m_name(arg1, arg2, arg3, arg4, arg5, arg6); } | 
					
						
							|  |  |  | #define BIND7(m_name, m_type1, m_type2, m_type3, m_type4, m_type5, m_type6, m_type7) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3, m_type4 arg4, m_type5 arg5, m_type6 arg6, m_type7 arg7) { DISPLAY_CHANGED BINDBASE->m_name(arg1, arg2, arg3, arg4, arg5, arg6, arg7); } | 
					
						
							|  |  |  | #define BIND8(m_name, m_type1, m_type2, m_type3, m_type4, m_type5, m_type6, m_type7, m_type8) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3, m_type4 arg4, m_type5 arg5, m_type6 arg6, m_type7 arg7, m_type8 arg8) { DISPLAY_CHANGED BINDBASE->m_name(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); } | 
					
						
							|  |  |  | #define BIND9(m_name, m_type1, m_type2, m_type3, m_type4, m_type5, m_type6, m_type7, m_type8, m_type9) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3, m_type4 arg4, m_type5 arg5, m_type6 arg6, m_type7 arg7, m_type8 arg8, m_type9 arg9) { DISPLAY_CHANGED BINDBASE->m_name(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); } | 
					
						
							|  |  |  | #define BIND10(m_name, m_type1, m_type2, m_type3, m_type4, m_type5, m_type6, m_type7, m_type8, m_type9, m_type10) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3, m_type4 arg4, m_type5 arg5, m_type6 arg6, m_type7 arg7, m_type8 arg8, m_type9 arg9, m_type10 arg10) { DISPLAY_CHANGED BINDBASE->m_name(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); } | 
					
						
							| 
									
										
										
										
											2017-06-17 23:26:49 -03:00
										 |  |  | #define BIND11(m_name, m_type1, m_type2, m_type3, m_type4, m_type5, m_type6, m_type7, m_type8, m_type9, m_type10, m_type11) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3, m_type4 arg4, m_type5 arg5, m_type6 arg6, m_type7 arg7, m_type8 arg8, m_type9 arg9, m_type10 arg10, m_type11 arg11) { DISPLAY_CHANGED BINDBASE->m_name(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11); } | 
					
						
							| 
									
										
										
										
											2017-10-22 13:52:31 -03:00
										 |  |  | #define BIND12(m_name, m_type1, m_type2, m_type3, m_type4, m_type5, m_type6, m_type7, m_type8, m_type9, m_type10, m_type11, m_type12) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3, m_type4 arg4, m_type5 arg5, m_type6 arg6, m_type7 arg7, m_type8 arg8, m_type9 arg9, m_type10 arg10, m_type11 arg11, m_type12 arg12) { DISPLAY_CHANGED BINDBASE->m_name(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12); } | 
					
						
							| 
									
										
										
										
											2018-07-02 16:50:52 -03:00
										 |  |  | #define BIND13(m_name, m_type1, m_type2, m_type3, m_type4, m_type5, m_type6, m_type7, m_type8, m_type9, m_type10, m_type11, m_type12, m_type13) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3, m_type4 arg4, m_type5 arg5, m_type6 arg6, m_type7 arg7, m_type8 arg8, m_type9 arg9, m_type10 arg10, m_type11 arg11, m_type12 arg12, m_type13 arg13) { DISPLAY_CHANGED BINDBASE->m_name(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13); } | 
					
						
							| 
									
										
										
										
											2019-06-15 23:45:24 -03:00
										 |  |  | #define BIND14(m_name, m_type1, m_type2, m_type3, m_type4, m_type5, m_type6, m_type7, m_type8, m_type9, m_type10, m_type11, m_type12, m_type13, m_type14) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3, m_type4 arg4, m_type5 arg5, m_type6 arg6, m_type7 arg7, m_type8 arg8, m_type9 arg9, m_type10 arg10, m_type11 arg11, m_type12 arg12, m_type13 arg13, m_type14 arg14) { DISPLAY_CHANGED BINDBASE->m_name(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14); } | 
					
						
							|  |  |  | #define BIND15(m_name, m_type1, m_type2, m_type3, m_type4, m_type5, m_type6, m_type7, m_type8, m_type9, m_type10, m_type11, m_type12, m_type13, m_type14, m_type15) \
 | 
					
						
							|  |  |  | 	void m_name(m_type1 arg1, m_type2 arg2, m_type3 arg3, m_type4 arg4, m_type5 arg5, m_type6 arg6, m_type7 arg7, m_type8 arg8, m_type9 arg9, m_type10 arg10, m_type11 arg11, m_type12 arg12, m_type13 arg13, m_type14 arg14, m_type15 arg15) { DISPLAY_CHANGED BINDBASE->m_name(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15); } | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 23:46:24 -03:00
										 |  |  | //from now on, calls forwarded to this singleton
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #define BINDBASE RSG::storage
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 	/* TEXTURE API */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | 	//these go pass-through, as they can be called from any thread
 | 
					
						
							|  |  |  | 	BIND1R(RID, texture_2d_create, const Ref<Image> &) | 
					
						
							| 
									
										
										
										
											2020-03-17 07:33:00 +01:00
										 |  |  | 	BIND2R(RID, texture_2d_layered_create, const Vector<Ref<Image>> &, TextureLayeredType) | 
					
						
							|  |  |  | 	BIND1R(RID, texture_3d_create, const Vector<Ref<Image>> &) | 
					
						
							| 
									
										
										
										
											2019-06-24 16:13:06 -03:00
										 |  |  | 	BIND1R(RID, texture_proxy_create, RID) | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	//goes pass-through
 | 
					
						
							|  |  |  | 	BIND3(texture_2d_update_immediate, RID, const Ref<Image> &, int) | 
					
						
							|  |  |  | 	//these go through command queue if they are in another thread
 | 
					
						
							|  |  |  | 	BIND3(texture_2d_update, RID, const Ref<Image> &, int) | 
					
						
							|  |  |  | 	BIND4(texture_3d_update, RID, const Ref<Image> &, int, int) | 
					
						
							| 
									
										
										
										
											2019-06-24 16:13:06 -03:00
										 |  |  | 	BIND2(texture_proxy_update, RID, RID) | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	//these also go pass-through
 | 
					
						
							|  |  |  | 	BIND0R(RID, texture_2d_placeholder_create) | 
					
						
							| 
									
										
										
										
											2020-05-01 09:34:23 -03:00
										 |  |  | 	BIND1R(RID, texture_2d_layered_placeholder_create, TextureLayeredType) | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | 	BIND0R(RID, texture_3d_placeholder_create) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND1RC(Ref<Image>, texture_2d_get, RID) | 
					
						
							|  |  |  | 	BIND2RC(Ref<Image>, texture_2d_layer_get, RID, int) | 
					
						
							|  |  |  | 	BIND3RC(Ref<Image>, texture_3d_slice_get, RID, int, int) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND2(texture_replace, RID, RID) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND3(texture_set_size_override, RID, int, int) | 
					
						
							|  |  |  | // FIXME: Disabled during Vulkan refactoring, should be ported.
 | 
					
						
							|  |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2017-08-21 00:17:24 +10:00
										 |  |  | 	BIND2(texture_bind, RID, uint32_t) | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND3(texture_set_detect_3d_callback, RID, TextureDetectCallback, void *) | 
					
						
							| 
									
										
										
										
											2017-06-16 21:47:28 -03:00
										 |  |  | 	BIND3(texture_set_detect_normal_callback, RID, TextureDetectCallback, void *) | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | 	BIND3(texture_set_detect_roughness_callback, RID, TextureDetectRoughnessCallback, void *) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(texture_set_path, RID, const String &) | 
					
						
							|  |  |  | 	BIND1RC(String, texture_get_path, RID) | 
					
						
							|  |  |  | 	BIND1(texture_debug_usage, List<TextureInfo> *) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-16 11:43:26 -03:00
										 |  |  | 	BIND2(texture_set_force_redraw_if_visible, RID, bool) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	/* SHADER API */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 23:36:37 -03:00
										 |  |  | 	BIND0R(RID, shader_create) | 
					
						
							| 
									
										
										
										
											2014-06-27 23:21:45 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(shader_set_code, RID, const String &) | 
					
						
							|  |  |  | 	BIND1RC(String, shader_get_code, RID) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2C(shader_get_param_list, RID, List<PropertyInfo> *) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND3(shader_set_default_texture_param, RID, const StringName &, RID) | 
					
						
							|  |  |  | 	BIND2RC(RID, shader_get_default_texture_param, RID, const StringName &) | 
					
						
							| 
									
										
										
										
											2019-07-12 10:12:48 -03:00
										 |  |  | 	BIND2RC(Variant, shader_get_param_default, RID, const StringName &) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* COMMON MATERIAL API */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND0R(RID, material_create) | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(material_set_shader, RID, RID) | 
					
						
							| 
									
										
										
										
											2014-05-04 22:50:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND3(material_set_param, RID, const StringName &, const Variant &) | 
					
						
							|  |  |  | 	BIND2RC(Variant, material_get_param, RID, const StringName &) | 
					
						
							| 
									
										
										
										
											2014-05-04 22:50:23 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-01 12:56:52 -03:00
										 |  |  | 	BIND2(material_set_render_priority, RID, int) | 
					
						
							| 
									
										
										
										
											2017-07-08 12:34:05 -03:00
										 |  |  | 	BIND2(material_set_next_pass, RID, RID) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 	/* MESH API */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-18 19:40:52 -03:00
										 |  |  | 	virtual RID mesh_create_from_surfaces(const Vector<SurfaceData> &p_surfaces) { | 
					
						
							|  |  |  | 		RID mesh = mesh_create(); | 
					
						
							|  |  |  | 		for (int i = 0; i < p_surfaces.size(); i++) { | 
					
						
							|  |  |  | 			mesh_add_surface(mesh, p_surfaces[i]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return mesh; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND0R(RID, mesh_create) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-18 19:40:52 -03:00
										 |  |  | 	BIND2(mesh_add_surface, RID, const SurfaceData &) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND1RC(int, mesh_get_blend_shape_count, RID) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(mesh_set_blend_shape_mode, RID, BlendShapeMode) | 
					
						
							|  |  |  | 	BIND1RC(BlendShapeMode, mesh_get_blend_shape_mode, RID) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 	BIND4(mesh_surface_update_region, RID, int, int, const Vector<uint8_t> &) | 
					
						
							| 
									
										
										
										
											2017-11-14 17:25:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND3(mesh_surface_set_material, RID, int, RID) | 
					
						
							|  |  |  | 	BIND2RC(RID, mesh_surface_get_material, RID, int) | 
					
						
							| 
									
										
										
										
											2014-05-29 10:56:39 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-18 19:40:52 -03:00
										 |  |  | 	BIND2RC(SurfaceData, mesh_get_surface, RID, int) | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND1RC(int, mesh_get_surface_count, RID) | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 21:09:00 -05:00
										 |  |  | 	BIND2(mesh_set_custom_aabb, RID, const AABB &) | 
					
						
							|  |  |  | 	BIND1RC(AABB, mesh_get_custom_aabb, RID) | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND1(mesh_clear, RID) | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	/* MULTIMESH API */ | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND0R(RID, multimesh_create) | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-14 00:37:42 -03:00
										 |  |  | 	BIND5(multimesh_allocate, RID, int, MultimeshTransformFormat, bool, bool) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND1RC(int, multimesh_get_instance_count, RID) | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(multimesh_set_mesh, RID, RID) | 
					
						
							|  |  |  | 	BIND3(multimesh_instance_set_transform, RID, int, const Transform &) | 
					
						
							|  |  |  | 	BIND3(multimesh_instance_set_transform_2d, RID, int, const Transform2D &) | 
					
						
							|  |  |  | 	BIND3(multimesh_instance_set_color, RID, int, const Color &) | 
					
						
							| 
									
										
										
										
											2018-07-06 20:21:13 -03:00
										 |  |  | 	BIND3(multimesh_instance_set_custom_data, RID, int, const Color &) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND1RC(RID, multimesh_get_mesh, RID) | 
					
						
							| 
									
										
										
										
											2017-11-16 21:09:00 -05:00
										 |  |  | 	BIND1RC(AABB, multimesh_get_aabb, RID) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2RC(Transform, multimesh_instance_get_transform, RID, int) | 
					
						
							|  |  |  | 	BIND2RC(Transform2D, multimesh_instance_get_transform_2d, RID, int) | 
					
						
							|  |  |  | 	BIND2RC(Color, multimesh_instance_get_color, RID, int) | 
					
						
							| 
									
										
										
										
											2018-07-06 20:21:13 -03:00
										 |  |  | 	BIND2RC(Color, multimesh_instance_get_custom_data, RID, int) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 	BIND2(multimesh_set_buffer, RID, const Vector<float> &) | 
					
						
							|  |  |  | 	BIND1RC(Vector<float>, multimesh_get_buffer, RID) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(multimesh_set_visible_instances, RID, int) | 
					
						
							|  |  |  | 	BIND1RC(int, multimesh_get_visible_instances, RID) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-29 10:56:39 -03:00
										 |  |  | 	/* IMMEDIATE API */ | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND0R(RID, immediate_create) | 
					
						
							|  |  |  | 	BIND3(immediate_begin, RID, PrimitiveType, RID) | 
					
						
							|  |  |  | 	BIND2(immediate_vertex, RID, const Vector3 &) | 
					
						
							|  |  |  | 	BIND2(immediate_normal, RID, const Vector3 &) | 
					
						
							|  |  |  | 	BIND2(immediate_tangent, RID, const Plane &) | 
					
						
							|  |  |  | 	BIND2(immediate_color, RID, const Color &) | 
					
						
							|  |  |  | 	BIND2(immediate_uv, RID, const Vector2 &) | 
					
						
							|  |  |  | 	BIND2(immediate_uv2, RID, const Vector2 &) | 
					
						
							|  |  |  | 	BIND1(immediate_end, RID) | 
					
						
							|  |  |  | 	BIND1(immediate_clear, RID) | 
					
						
							|  |  |  | 	BIND2(immediate_set_material, RID, RID) | 
					
						
							|  |  |  | 	BIND1RC(RID, immediate_get_material, RID) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 	/* SKELETON API */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND0R(RID, skeleton_create) | 
					
						
							|  |  |  | 	BIND3(skeleton_allocate, RID, int, bool) | 
					
						
							|  |  |  | 	BIND1RC(int, skeleton_get_bone_count, RID) | 
					
						
							|  |  |  | 	BIND3(skeleton_bone_set_transform, RID, int, const Transform &) | 
					
						
							|  |  |  | 	BIND2RC(Transform, skeleton_bone_get_transform, RID, int) | 
					
						
							|  |  |  | 	BIND3(skeleton_bone_set_transform_2d, RID, int, const Transform2D &) | 
					
						
							|  |  |  | 	BIND2RC(Transform2D, skeleton_bone_get_transform_2d, RID, int) | 
					
						
							| 
									
										
										
										
											2018-05-03 17:29:15 -03:00
										 |  |  | 	BIND2(skeleton_set_base_transform_2d, RID, const Transform2D &) | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	/* Light API */ | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-09 23:34:01 -03:00
										 |  |  | 	BIND0R(RID, directional_light_create) | 
					
						
							|  |  |  | 	BIND0R(RID, omni_light_create) | 
					
						
							|  |  |  | 	BIND0R(RID, spot_light_create) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(light_set_color, RID, const Color &) | 
					
						
							|  |  |  | 	BIND3(light_set_param, RID, LightParam, float) | 
					
						
							|  |  |  | 	BIND2(light_set_shadow, RID, bool) | 
					
						
							|  |  |  | 	BIND2(light_set_shadow_color, RID, const Color &) | 
					
						
							|  |  |  | 	BIND2(light_set_projector, RID, RID) | 
					
						
							|  |  |  | 	BIND2(light_set_negative, RID, bool) | 
					
						
							|  |  |  | 	BIND2(light_set_cull_mask, RID, uint32_t) | 
					
						
							| 
									
										
										
										
											2017-08-19 20:06:40 -03:00
										 |  |  | 	BIND2(light_set_reverse_cull_face_mode, RID, bool) | 
					
						
							| 
									
										
										
										
											2020-06-25 10:33:28 -03:00
										 |  |  | 	BIND2(light_set_bake_mode, RID, LightBakeMode) | 
					
						
							|  |  |  | 	BIND2(light_set_max_sdfgi_cascade, RID, uint32_t) | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(light_omni_set_shadow_mode, RID, LightOmniShadowMode) | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(light_directional_set_shadow_mode, RID, LightDirectionalShadowMode) | 
					
						
							|  |  |  | 	BIND2(light_directional_set_blend_splits, RID, bool) | 
					
						
							| 
									
										
										
										
											2017-09-07 18:00:47 -03:00
										 |  |  | 	BIND2(light_directional_set_shadow_depth_range_mode, RID, LightDirectionalShadowDepthRangeMode) | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 	/* PROBE API */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND0R(RID, reflection_probe_create) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND2(reflection_probe_set_update_mode, RID, ReflectionProbeUpdateMode) | 
					
						
							|  |  |  | 	BIND2(reflection_probe_set_intensity, RID, float) | 
					
						
							| 
									
										
										
										
											2020-06-25 10:33:28 -03:00
										 |  |  | 	BIND2(reflection_probe_set_ambient_color, RID, const Color &) | 
					
						
							|  |  |  | 	BIND2(reflection_probe_set_ambient_energy, RID, float) | 
					
						
							|  |  |  | 	BIND2(reflection_probe_set_ambient_mode, RID, ReflectionProbeAmbientMode) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(reflection_probe_set_max_distance, RID, float) | 
					
						
							|  |  |  | 	BIND2(reflection_probe_set_extents, RID, const Vector3 &) | 
					
						
							|  |  |  | 	BIND2(reflection_probe_set_origin_offset, RID, const Vector3 &) | 
					
						
							|  |  |  | 	BIND2(reflection_probe_set_as_interior, RID, bool) | 
					
						
							|  |  |  | 	BIND2(reflection_probe_set_enable_box_projection, RID, bool) | 
					
						
							|  |  |  | 	BIND2(reflection_probe_set_enable_shadows, RID, bool) | 
					
						
							|  |  |  | 	BIND2(reflection_probe_set_cull_mask, RID, uint32_t) | 
					
						
							| 
									
										
										
										
											2018-09-28 16:40:20 -03:00
										 |  |  | 	BIND2(reflection_probe_set_resolution, RID, int) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-14 00:05:21 -03:00
										 |  |  | 	/* DECAL API */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND0R(RID, decal_create) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND2(decal_set_extents, RID, const Vector3 &) | 
					
						
							|  |  |  | 	BIND3(decal_set_texture, RID, DecalTexture, RID) | 
					
						
							|  |  |  | 	BIND2(decal_set_emission_energy, RID, float) | 
					
						
							|  |  |  | 	BIND2(decal_set_albedo_mix, RID, float) | 
					
						
							|  |  |  | 	BIND2(decal_set_modulate, RID, const Color &) | 
					
						
							|  |  |  | 	BIND2(decal_set_cull_mask, RID, uint32_t) | 
					
						
							|  |  |  | 	BIND4(decal_set_distance_fade, RID, bool, float, float) | 
					
						
							|  |  |  | 	BIND3(decal_set_fade, RID, float, float) | 
					
						
							|  |  |  | 	BIND2(decal_set_normal_fade, RID, float) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-20 00:21:07 -03:00
										 |  |  | 	/* BAKED LIGHT API */ | 
					
						
							| 
									
										
										
										
											2014-06-11 10:41:03 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-20 00:21:07 -03:00
										 |  |  | 	BIND0R(RID, gi_probe_create) | 
					
						
							| 
									
										
										
										
											2014-06-11 10:41:03 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 	BIND8(gi_probe_allocate, RID, const Transform &, const AABB &, const Vector3i &, const Vector<uint8_t> &, const Vector<uint8_t> &, const Vector<uint8_t> &, const Vector<int> &) | 
					
						
							| 
									
										
										
										
											2014-10-27 22:54:32 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-03 17:39:08 -03:00
										 |  |  | 	BIND1RC(AABB, gi_probe_get_bounds, RID) | 
					
						
							|  |  |  | 	BIND1RC(Vector3i, gi_probe_get_octree_size, RID) | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 	BIND1RC(Vector<uint8_t>, gi_probe_get_octree_cells, RID) | 
					
						
							|  |  |  | 	BIND1RC(Vector<uint8_t>, gi_probe_get_data_cells, RID) | 
					
						
							|  |  |  | 	BIND1RC(Vector<uint8_t>, gi_probe_get_distance_field, RID) | 
					
						
							|  |  |  | 	BIND1RC(Vector<int>, gi_probe_get_level_counts, RID) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND1RC(Transform, gi_probe_get_to_cell_xform, RID) | 
					
						
							| 
									
										
										
										
											2014-08-14 10:31:38 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-03 17:39:08 -03:00
										 |  |  | 	BIND2(gi_probe_set_dynamic_range, RID, float) | 
					
						
							|  |  |  | 	BIND1RC(float, gi_probe_get_dynamic_range, RID) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND2(gi_probe_set_propagation, RID, float) | 
					
						
							|  |  |  | 	BIND1RC(float, gi_probe_get_propagation, RID) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(gi_probe_set_energy, RID, float) | 
					
						
							|  |  |  | 	BIND1RC(float, gi_probe_get_energy, RID) | 
					
						
							| 
									
										
										
										
											2016-01-31 12:56:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-14 03:45:44 -03:00
										 |  |  | 	BIND2(gi_probe_set_ao, RID, float) | 
					
						
							|  |  |  | 	BIND1RC(float, gi_probe_get_ao, RID) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-04 18:17:53 -03:00
										 |  |  | 	BIND2(gi_probe_set_ao_size, RID, float) | 
					
						
							|  |  |  | 	BIND1RC(float, gi_probe_get_ao_size, RID) | 
					
						
							| 
									
										
										
										
											2019-10-14 03:45:44 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(gi_probe_set_bias, RID, float) | 
					
						
							|  |  |  | 	BIND1RC(float, gi_probe_get_bias, RID) | 
					
						
							| 
									
										
										
										
											2017-02-16 08:55:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-15 23:24:37 -03:00
										 |  |  | 	BIND2(gi_probe_set_normal_bias, RID, float) | 
					
						
							|  |  |  | 	BIND1RC(float, gi_probe_get_normal_bias, RID) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(gi_probe_set_interior, RID, bool) | 
					
						
							|  |  |  | 	BIND1RC(bool, gi_probe_is_interior, RID) | 
					
						
							| 
									
										
										
										
											2016-01-31 12:56:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-03 17:39:08 -03:00
										 |  |  | 	BIND2(gi_probe_set_use_two_bounces, RID, bool) | 
					
						
							|  |  |  | 	BIND1RC(bool, gi_probe_is_using_two_bounces, RID) | 
					
						
							| 
									
										
										
										
											2016-01-31 12:56:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-03 17:39:08 -03:00
										 |  |  | 	BIND2(gi_probe_set_anisotropy_strength, RID, float) | 
					
						
							|  |  |  | 	BIND1RC(float, gi_probe_get_anisotropy_strength, RID) | 
					
						
							| 
									
										
										
										
											2014-10-27 22:54:32 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 09:34:23 -03:00
										 |  |  | 	/* LIGHTMAP */ | 
					
						
							| 
									
										
										
										
											2017-12-14 08:59:46 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 09:34:23 -03:00
										 |  |  | 	BIND0R(RID, lightmap_create) | 
					
						
							| 
									
										
										
										
											2017-12-14 08:59:46 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 09:34:23 -03:00
										 |  |  | 	BIND3(lightmap_set_textures, RID, RID, bool) | 
					
						
							|  |  |  | 	BIND2(lightmap_set_probe_bounds, RID, const AABB &) | 
					
						
							|  |  |  | 	BIND2(lightmap_set_probe_interior, RID, bool) | 
					
						
							|  |  |  | 	BIND5(lightmap_set_probe_capture_data, RID, const PackedVector3Array &, const PackedColorArray &, const PackedInt32Array &, const PackedInt32Array &) | 
					
						
							|  |  |  | 	BIND1RC(PackedVector3Array, lightmap_get_probe_capture_points, RID) | 
					
						
							|  |  |  | 	BIND1RC(PackedColorArray, lightmap_get_probe_capture_sh, RID) | 
					
						
							|  |  |  | 	BIND1RC(PackedInt32Array, lightmap_get_probe_capture_tetrahedra, RID) | 
					
						
							|  |  |  | 	BIND1RC(PackedInt32Array, lightmap_get_probe_capture_bsp_tree, RID) | 
					
						
							|  |  |  | 	BIND1(lightmap_set_probe_capture_update_speed, float) | 
					
						
							| 
									
										
										
										
											2017-12-14 08:59:46 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-30 08:35:54 -03:00
										 |  |  | 	/* PARTICLES */ | 
					
						
							| 
									
										
										
										
											2014-10-27 22:54:32 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-30 08:35:54 -03:00
										 |  |  | 	BIND0R(RID, particles_create) | 
					
						
							| 
									
										
										
										
											2014-10-27 22:54:32 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(particles_set_emitting, RID, bool) | 
					
						
							| 
									
										
										
										
											2017-12-23 05:08:50 +01:00
										 |  |  | 	BIND1R(bool, particles_get_emitting, RID) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(particles_set_amount, RID, int) | 
					
						
							|  |  |  | 	BIND2(particles_set_lifetime, RID, float) | 
					
						
							| 
									
										
										
										
											2017-06-25 08:01:15 -03:00
										 |  |  | 	BIND2(particles_set_one_shot, RID, bool) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(particles_set_pre_process_time, RID, float) | 
					
						
							|  |  |  | 	BIND2(particles_set_explosiveness_ratio, RID, float) | 
					
						
							|  |  |  | 	BIND2(particles_set_randomness_ratio, RID, float) | 
					
						
							| 
									
										
										
										
											2017-11-16 21:09:00 -05:00
										 |  |  | 	BIND2(particles_set_custom_aabb, RID, const AABB &) | 
					
						
							| 
									
										
										
										
											2017-04-08 22:38:11 -03:00
										 |  |  | 	BIND2(particles_set_speed_scale, RID, float) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(particles_set_use_local_coordinates, RID, bool) | 
					
						
							|  |  |  | 	BIND2(particles_set_process_material, RID, RID) | 
					
						
							| 
									
										
										
										
											2017-04-06 23:36:37 -03:00
										 |  |  | 	BIND2(particles_set_fixed_fps, RID, int) | 
					
						
							|  |  |  | 	BIND2(particles_set_fractional_delta, RID, bool) | 
					
						
							| 
									
										
										
										
											2019-11-09 09:51:17 +01:00
										 |  |  | 	BIND1R(bool, particles_is_inactive, RID) | 
					
						
							|  |  |  | 	BIND1(particles_request_process, RID) | 
					
						
							| 
									
										
										
										
											2017-06-25 08:01:15 -03:00
										 |  |  | 	BIND1(particles_restart, RID) | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | 	BIND2(particles_set_draw_order, RID, RS::ParticlesDrawOrder) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(particles_set_draw_passes, RID, int) | 
					
						
							|  |  |  | 	BIND3(particles_set_draw_pass_mesh, RID, int, RID) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-16 21:09:00 -05:00
										 |  |  | 	BIND1R(AABB, particles_get_current_aabb, RID) | 
					
						
							| 
									
										
										
										
											2017-06-21 16:25:45 -03:00
										 |  |  | 	BIND2(particles_set_emission_transform, RID, const Transform &) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-19 11:14:41 -03:00
										 |  |  | #undef BINDBASE
 | 
					
						
							|  |  |  | //from now on, calls forwarded to this singleton
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #define BINDBASE RSG::scene
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-20 00:21:07 -03:00
										 |  |  | 	/* CAMERA API */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-19 11:14:41 -03:00
										 |  |  | 	BIND0R(RID, camera_create) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND4(camera_set_perspective, RID, float, float, float) | 
					
						
							|  |  |  | 	BIND4(camera_set_orthogonal, RID, float, float, float) | 
					
						
							| 
									
										
										
										
											2019-02-19 17:17:02 +01:00
										 |  |  | 	BIND5(camera_set_frustum, RID, float, Vector2, float, float) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(camera_set_transform, RID, const Transform &) | 
					
						
							|  |  |  | 	BIND2(camera_set_cull_mask, RID, uint32_t) | 
					
						
							|  |  |  | 	BIND2(camera_set_environment, RID, RID) | 
					
						
							| 
									
										
										
										
											2020-01-13 15:37:24 -03:00
										 |  |  | 	BIND2(camera_set_camera_effects, RID, RID) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(camera_set_use_vertical_aspect, RID, bool) | 
					
						
							| 
									
										
										
										
											2015-03-16 00:47:37 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 23:46:24 -03:00
										 |  |  | #undef BINDBASE
 | 
					
						
							|  |  |  | //from now on, calls forwarded to this singleton
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #define BINDBASE RSG::viewport
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 	/* VIEWPORT TARGET API */ | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND0R(RID, viewport_create) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-09 00:47:36 +10:00
										 |  |  | 	BIND2(viewport_set_use_xr, RID, bool) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND3(viewport_set_size, RID, int, int) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(viewport_set_active, RID, bool) | 
					
						
							|  |  |  | 	BIND2(viewport_set_parent_viewport, RID, RID) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(viewport_set_clear_mode, RID, ViewportClearMode) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND3(viewport_attach_to_screen, RID, const Rect2 &, int) | 
					
						
							| 
									
										
										
										
											2019-05-08 11:25:34 -07:00
										 |  |  | 	BIND2(viewport_set_render_direct_to_screen, RID, bool) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(viewport_set_update_mode, RID, ViewportUpdateMode) | 
					
						
							|  |  |  | 	BIND2(viewport_set_vflip, RID, bool) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND1RC(RID, viewport_get_texture, RID) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(viewport_set_hide_scenario, RID, bool) | 
					
						
							|  |  |  | 	BIND2(viewport_set_hide_canvas, RID, bool) | 
					
						
							|  |  |  | 	BIND2(viewport_set_disable_environment, RID, bool) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(viewport_attach_camera, RID, RID) | 
					
						
							|  |  |  | 	BIND2(viewport_set_scenario, RID, RID) | 
					
						
							|  |  |  | 	BIND2(viewport_attach_canvas, RID, RID) | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(viewport_remove_canvas, RID, RID) | 
					
						
							|  |  |  | 	BIND3(viewport_set_canvas_transform, RID, RID, const Transform2D &) | 
					
						
							|  |  |  | 	BIND2(viewport_set_transparent_background, RID, bool) | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(viewport_set_global_canvas_transform, RID, const Transform2D &) | 
					
						
							| 
									
										
										
										
											2018-10-30 21:53:00 +01:00
										 |  |  | 	BIND4(viewport_set_canvas_stacking, RID, RID, int, int) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(viewport_set_shadow_atlas_size, RID, int) | 
					
						
							|  |  |  | 	BIND3(viewport_set_shadow_atlas_quadrant_subdivision, RID, int, int) | 
					
						
							|  |  |  | 	BIND2(viewport_set_msaa, RID, ViewportMSAA) | 
					
						
							| 
									
										
										
										
											2020-04-12 01:49:10 -03:00
										 |  |  | 	BIND2(viewport_set_screen_space_aa, RID, ViewportScreenSpaceAA) | 
					
						
							| 
									
										
										
										
											2014-10-12 02:13:22 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-11 15:52:03 -03:00
										 |  |  | 	BIND2R(int, viewport_get_render_info, RID, ViewportRenderInfo) | 
					
						
							|  |  |  | 	BIND2(viewport_set_debug_draw, RID, ViewportDebugDraw) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-10 14:18:42 -03:00
										 |  |  | 	BIND2(viewport_set_measure_render_time, RID, bool) | 
					
						
							|  |  |  | 	BIND1RC(float, viewport_get_measured_render_time_cpu, RID) | 
					
						
							|  |  |  | 	BIND1RC(float, viewport_get_measured_render_time_gpu, RID) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-06 21:36:34 +01:00
										 |  |  | 	/* ENVIRONMENT API */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-19 11:14:41 -03:00
										 |  |  | #undef BINDBASE
 | 
					
						
							|  |  |  | //from now on, calls forwarded to this singleton
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #define BINDBASE RSG::scene_render
 | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-06 22:51:27 -03:00
										 |  |  | 	BIND1(directional_shadow_atlas_set_size, int) | 
					
						
							| 
									
										
										
										
											2020-06-25 10:33:28 -03:00
										 |  |  | 	BIND1(gi_probe_set_quality, GIProbeQuality) | 
					
						
							| 
									
										
										
										
											2019-09-06 22:51:27 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-26 17:43:58 -03:00
										 |  |  | 	/* SKY API */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND0R(RID, sky_create) | 
					
						
							|  |  |  | 	BIND2(sky_set_radiance_size, RID, int) | 
					
						
							|  |  |  | 	BIND2(sky_set_mode, RID, SkyMode) | 
					
						
							| 
									
										
										
										
											2020-03-19 17:32:19 -07:00
										 |  |  | 	BIND2(sky_set_material, RID, RID) | 
					
						
							| 
									
										
										
										
											2020-05-01 09:34:23 -03:00
										 |  |  | 	BIND4R(Ref<Image>, sky_bake_panorama, RID, float, bool, const Size2i &) | 
					
						
							| 
									
										
										
										
											2019-08-26 17:43:58 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND0R(RID, environment_create) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(environment_set_background, RID, EnvironmentBG) | 
					
						
							| 
									
										
										
										
											2017-05-25 13:53:59 -03:00
										 |  |  | 	BIND2(environment_set_sky, RID, RID) | 
					
						
							| 
									
										
										
										
											2017-09-29 18:56:05 -03:00
										 |  |  | 	BIND2(environment_set_sky_custom_fov, RID, float) | 
					
						
							| 
									
										
										
										
											2018-12-15 16:27:03 +11:00
										 |  |  | 	BIND2(environment_set_sky_orientation, RID, const Basis &) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(environment_set_bg_color, RID, const Color &) | 
					
						
							|  |  |  | 	BIND2(environment_set_bg_energy, RID, float) | 
					
						
							|  |  |  | 	BIND2(environment_set_canvas_max_layer, RID, int) | 
					
						
							| 
									
										
										
										
											2020-01-25 07:18:55 -03:00
										 |  |  | 	BIND7(environment_set_ambient_light, RID, const Color &, EnvironmentAmbientSource, float, float, EnvironmentReflectionSource, const Color &) | 
					
						
							| 
									
										
										
										
											2019-08-26 17:43:58 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | // FIXME: Disabled during Vulkan refactoring, should be ported.
 | 
					
						
							|  |  |  | #if 0
 | 
					
						
							| 
									
										
										
										
											2017-08-21 00:17:24 +10:00
										 |  |  | 	BIND2(environment_set_camera_feed_id, RID, int) | 
					
						
							| 
									
										
										
										
											2019-06-11 15:43:37 -03:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-04-01 23:24:52 -03:00
										 |  |  | 	BIND6(environment_set_ssr, RID, bool, int, float, float, float) | 
					
						
							|  |  |  | 	BIND1(environment_set_ssr_roughness_quality, EnvironmentSSRRoughnessQuality) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-25 07:18:55 -03:00
										 |  |  | 	BIND9(environment_set_ssao, RID, bool, float, float, float, float, float, EnvironmentSSAOBlur, float) | 
					
						
							|  |  |  | 	BIND2(environment_set_ssao_quality, EnvironmentSSAOQuality, bool) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-30 10:46:03 -03:00
										 |  |  | 	BIND11(environment_set_glow, RID, bool, int, float, float, float, float, EnvironmentGlowBlendMode, float, float, float) | 
					
						
							|  |  |  | 	BIND1(environment_glow_set_use_bicubic_upscale, bool) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND9(environment_set_tonemap, RID, EnvironmentToneMapper, float, float, bool, float, float, float, float) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND6(environment_set_adjustment, RID, bool, float, float, float, RID) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	BIND5(environment_set_fog, RID, bool, const Color &, const Color &, float) | 
					
						
							| 
									
										
										
										
											2018-11-13 17:19:11 -08:00
										 |  |  | 	BIND7(environment_set_fog_depth, RID, bool, float, float, float, bool, float) | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 	BIND5(environment_set_fog_height, RID, bool, float, float, float) | 
					
						
							| 
									
										
										
										
											2020-08-12 22:21:01 -03:00
										 |  |  | 	BIND9(environment_set_volumetric_fog, RID, bool, float, const Color &, float, float, float, float, EnvVolumetricFogShadowFilter) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND2(environment_set_volumetric_fog_volume_size, int, int) | 
					
						
							|  |  |  | 	BIND1(environment_set_volumetric_fog_filter_active, bool) | 
					
						
							|  |  |  | 	BIND1(environment_set_volumetric_fog_directional_shadow_shrink_size, int) | 
					
						
							|  |  |  | 	BIND1(environment_set_volumetric_fog_positional_shadow_shrink_size, int) | 
					
						
							| 
									
										
										
										
											2017-06-06 23:16:17 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-01 14:18:13 +02:00
										 |  |  | 	BIND11(environment_set_sdfgi, RID, bool, EnvironmentSDFGICascades, float, EnvironmentSDFGIYScale, bool, bool, bool, float, float, float) | 
					
						
							| 
									
										
										
										
											2020-06-25 10:33:28 -03:00
										 |  |  | 	BIND1(environment_set_sdfgi_ray_count, EnvironmentSDFGIRayCount) | 
					
						
							|  |  |  | 	BIND1(environment_set_sdfgi_frames_to_converge, EnvironmentSDFGIFramesToConverge) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 09:34:23 -03:00
										 |  |  | 	BIND3R(Ref<Image>, environment_bake_panorama, RID, bool, const Size2i &) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-25 10:33:28 -03:00
										 |  |  | 	BIND3(screen_space_roughness_limiter_set_active, bool, float, float) | 
					
						
							| 
									
										
										
										
											2020-04-03 23:42:26 -03:00
										 |  |  | 	BIND1(sub_surface_scattering_set_quality, SubSurfaceScatteringQuality) | 
					
						
							|  |  |  | 	BIND2(sub_surface_scattering_set_scale, float, float) | 
					
						
							| 
									
										
										
										
											2020-01-26 20:09:40 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-13 15:37:24 -03:00
										 |  |  | 	/* CAMERA EFFECTS */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND0R(RID, camera_effects_create) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-15 21:23:21 -03:00
										 |  |  | 	BIND2(camera_effects_set_dof_blur_quality, DOFBlurQuality, bool) | 
					
						
							|  |  |  | 	BIND1(camera_effects_set_dof_blur_bokeh_shape, DOFBokehShape) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND8(camera_effects_set_dof_blur, RID, bool, float, float, bool, float, float, float) | 
					
						
							| 
									
										
										
										
											2020-01-13 15:37:24 -03:00
										 |  |  | 	BIND3(camera_effects_set_custom_exposure, RID, bool, float) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-10 02:30:36 -07:00
										 |  |  | 	BIND1(shadows_quality_set, ShadowQuality); | 
					
						
							|  |  |  | 	BIND1(directional_shadow_quality_set, ShadowQuality); | 
					
						
							| 
									
										
										
										
											2020-04-07 22:51:52 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-06 21:36:34 +01:00
										 |  |  | 	/* SCENARIO API */ | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-21 07:27:13 -03:00
										 |  |  | #undef BINDBASE
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #define BINDBASE RSG::scene
 | 
					
						
							| 
									
										
										
										
											2016-05-27 14:18:40 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND0R(RID, scenario_create) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(scenario_set_debug, RID, ScenarioDebugMode) | 
					
						
							|  |  |  | 	BIND2(scenario_set_environment, RID, RID) | 
					
						
							| 
									
										
										
										
											2020-01-13 15:37:24 -03:00
										 |  |  | 	BIND2(scenario_set_camera_effects, RID, RID) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(scenario_set_fallback_environment, RID, RID) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* INSTANCING API */ | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND0R(RID, instance_create) | 
					
						
							| 
									
										
										
										
											2017-01-04 01:16:14 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-21 21:32:27 +01:00
										 |  |  | 	BIND2(instance_set_base, RID, RID) | 
					
						
							|  |  |  | 	BIND2(instance_set_scenario, RID, RID) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(instance_set_layer_mask, RID, uint32_t) | 
					
						
							|  |  |  | 	BIND2(instance_set_transform, RID, const Transform &) | 
					
						
							| 
									
										
										
										
											2017-08-07 17:17:31 +07:00
										 |  |  | 	BIND2(instance_attach_object_instance_id, RID, ObjectID) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND3(instance_set_blend_shape_weight, RID, int, float) | 
					
						
							|  |  |  | 	BIND3(instance_set_surface_material, RID, int, RID) | 
					
						
							|  |  |  | 	BIND2(instance_set_visible, RID, bool) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-20 20:54:26 +01:00
										 |  |  | 	BIND2(instance_set_custom_aabb, RID, AABB) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(instance_attach_skeleton, RID, RID) | 
					
						
							|  |  |  | 	BIND2(instance_set_exterior, RID, bool) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(instance_set_extra_visibility_margin, RID, real_t) | 
					
						
							| 
									
										
										
										
											2016-03-07 23:00:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 	// don't use these in a game!
 | 
					
						
							| 
									
										
										
										
											2017-11-16 21:09:00 -05:00
										 |  |  | 	BIND2RC(Vector<ObjectID>, instances_cull_aabb, const AABB &, RID) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND3RC(Vector<ObjectID>, instances_cull_ray, const Vector3 &, const Vector3 &, RID) | 
					
						
							|  |  |  | 	BIND2RC(Vector<ObjectID>, instances_cull_convex, const Vector<Plane> &, RID) | 
					
						
							| 
									
										
										
										
											2014-06-11 10:41:03 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND3(instance_geometry_set_flag, RID, InstanceFlags, bool) | 
					
						
							|  |  |  | 	BIND2(instance_geometry_set_cast_shadows_setting, RID, ShadowCastingSetting) | 
					
						
							|  |  |  | 	BIND2(instance_geometry_set_material_override, RID, RID) | 
					
						
							| 
									
										
										
										
											2014-10-27 22:54:32 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND5(instance_geometry_set_draw_range, RID, float, float, float, float) | 
					
						
							|  |  |  | 	BIND2(instance_geometry_set_as_instance_lod, RID, RID) | 
					
						
							| 
									
										
										
										
											2020-05-01 09:34:23 -03:00
										 |  |  | 	BIND4(instance_geometry_set_lightmap, RID, RID, const Rect2 &, int) | 
					
						
							| 
									
										
										
										
											2014-06-11 10:41:03 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-16 23:52:00 -03:00
										 |  |  | 	BIND3(instance_geometry_set_shader_parameter, RID, const StringName &, const Variant &) | 
					
						
							|  |  |  | 	BIND2RC(Variant, instance_geometry_get_shader_parameter, RID, const StringName &) | 
					
						
							|  |  |  | 	BIND2RC(Variant, instance_geometry_get_shader_parameter_default_value, RID, const StringName &) | 
					
						
							|  |  |  | 	BIND2C(instance_geometry_get_shader_parameter_list, RID, List<PropertyInfo> *) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-01 09:34:23 -03:00
										 |  |  | 	BIND3R(TypedArray<Image>, bake_render_uv2, RID, const Vector<RID> &, const Size2i &) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 23:46:24 -03:00
										 |  |  | #undef BINDBASE
 | 
					
						
							|  |  |  | //from now on, calls forwarded to this singleton
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | #define BINDBASE RSG::canvas
 | 
					
						
							| 
									
										
										
										
											2014-06-11 10:41:03 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	/* CANVAS (2D) */ | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND0R(RID, canvas_create) | 
					
						
							|  |  |  | 	BIND3(canvas_set_item_mirroring, RID, RID, const Point2 &) | 
					
						
							|  |  |  | 	BIND2(canvas_set_modulate, RID, const Color &) | 
					
						
							| 
									
										
										
										
											2019-04-05 10:24:54 -03:00
										 |  |  | 	BIND3(canvas_set_parent, RID, RID, float) | 
					
						
							|  |  |  | 	BIND1(canvas_set_disable_scale, bool) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BIND0R(RID, canvas_item_create) | 
					
						
							|  |  |  | 	BIND2(canvas_item_set_parent, RID, RID) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND2(canvas_item_set_visible, RID, bool) | 
					
						
							|  |  |  | 	BIND2(canvas_item_set_light_mask, RID, int) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-08-29 16:48:32 -03:00
										 |  |  | 	BIND2(canvas_item_set_update_when_visible, RID, bool) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(canvas_item_set_transform, RID, const Transform2D &) | 
					
						
							|  |  |  | 	BIND2(canvas_item_set_clip, RID, bool) | 
					
						
							|  |  |  | 	BIND2(canvas_item_set_distance_field_mode, RID, bool) | 
					
						
							|  |  |  | 	BIND3(canvas_item_set_custom_rect, RID, bool, const Rect2 &) | 
					
						
							|  |  |  | 	BIND2(canvas_item_set_modulate, RID, const Color &) | 
					
						
							|  |  |  | 	BIND2(canvas_item_set_self_modulate, RID, const Color &) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND2(canvas_item_set_draw_behind_parent, RID, bool) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-15 23:45:24 -03:00
										 |  |  | 	BIND2(canvas_item_set_default_texture_filter, RID, CanvasItemTextureFilter) | 
					
						
							|  |  |  | 	BIND2(canvas_item_set_default_texture_repeat, RID, CanvasItemTextureRepeat) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-24 22:24:07 -03:00
										 |  |  | 	BIND5(canvas_item_add_line, RID, const Point2 &, const Point2 &, const Color &, float) | 
					
						
							|  |  |  | 	BIND4(canvas_item_add_polyline, RID, const Vector<Point2> &, const Vector<Color> &, float) | 
					
						
							|  |  |  | 	BIND4(canvas_item_add_multiline, RID, const Vector<Point2> &, const Vector<Color> &, float) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND3(canvas_item_add_rect, RID, const Rect2 &, const Color &) | 
					
						
							|  |  |  | 	BIND4(canvas_item_add_circle, RID, const Point2 &, float, const Color &) | 
					
						
							| 
									
										
										
										
											2019-06-15 23:45:24 -03:00
										 |  |  | 	BIND11(canvas_item_add_texture_rect, RID, const Rect2 &, RID, bool, const Color &, bool, RID, RID, const Color &, CanvasItemTextureFilter, CanvasItemTextureRepeat) | 
					
						
							|  |  |  | 	BIND12(canvas_item_add_texture_rect_region, RID, const Rect2 &, RID, const Rect2 &, const Color &, bool, RID, RID, const Color &, bool, CanvasItemTextureFilter, CanvasItemTextureRepeat) | 
					
						
							|  |  |  | 	BIND15(canvas_item_add_nine_patch, RID, const Rect2 &, const Rect2 &, RID, const Vector2 &, const Vector2 &, NinePatchAxisMode, NinePatchAxisMode, bool, const Color &, RID, RID, const Color &, CanvasItemTextureFilter, CanvasItemTextureRepeat) | 
					
						
							|  |  |  | 	BIND11(canvas_item_add_primitive, RID, const Vector<Point2> &, const Vector<Color> &, const Vector<Point2> &, RID, float, RID, RID, const Color &, CanvasItemTextureFilter, CanvasItemTextureRepeat) | 
					
						
							| 
									
										
										
										
											2019-06-24 22:24:07 -03:00
										 |  |  | 	BIND10(canvas_item_add_polygon, RID, const Vector<Point2> &, const Vector<Color> &, const Vector<Point2> &, RID, RID, RID, const Color &, CanvasItemTextureFilter, CanvasItemTextureRepeat) | 
					
						
							|  |  |  | 	BIND14(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, RID, RID, const Color &, CanvasItemTextureFilter, CanvasItemTextureRepeat) | 
					
						
							| 
									
										
										
										
											2019-06-15 23:45:24 -03:00
										 |  |  | 	BIND10(canvas_item_add_mesh, RID, const RID &, const Transform2D &, const Color &, RID, RID, RID, const Color &, CanvasItemTextureFilter, CanvasItemTextureRepeat) | 
					
						
							|  |  |  | 	BIND8(canvas_item_add_multimesh, RID, RID, RID, RID, RID, const Color &, CanvasItemTextureFilter, CanvasItemTextureRepeat) | 
					
						
							|  |  |  | 	BIND8(canvas_item_add_particles, RID, RID, RID, RID, RID, const Color &, CanvasItemTextureFilter, CanvasItemTextureRepeat) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(canvas_item_add_set_transform, RID, const Transform2D &) | 
					
						
							|  |  |  | 	BIND2(canvas_item_add_clip_ignore, RID, bool) | 
					
						
							|  |  |  | 	BIND2(canvas_item_set_sort_children_by_y, RID, bool) | 
					
						
							| 
									
										
										
										
											2017-12-29 23:06:03 +01:00
										 |  |  | 	BIND2(canvas_item_set_z_index, RID, int) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	BIND2(canvas_item_set_z_as_relative_to_parent, RID, bool) | 
					
						
							|  |  |  | 	BIND3(canvas_item_set_copy_to_backbuffer, RID, bool, const Rect2 &) | 
					
						
							| 
									
										
										
										
											2018-02-21 17:23:27 -03:00
										 |  |  | 	BIND2(canvas_item_attach_skeleton, RID, RID) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BIND1(canvas_item_clear, RID) | 
					
						
							|  |  |  | 	BIND2(canvas_item_set_draw_index, RID, int) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND2(canvas_item_set_material, RID, RID) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND2(canvas_item_set_use_parent_material, RID, bool) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND0R(RID, canvas_light_create) | 
					
						
							|  |  |  | 	BIND2(canvas_light_attach_to_canvas, RID, RID) | 
					
						
							|  |  |  | 	BIND2(canvas_light_set_enabled, RID, bool) | 
					
						
							|  |  |  | 	BIND2(canvas_light_set_scale, RID, float) | 
					
						
							|  |  |  | 	BIND2(canvas_light_set_transform, RID, const Transform2D &) | 
					
						
							|  |  |  | 	BIND2(canvas_light_set_texture, RID, RID) | 
					
						
							|  |  |  | 	BIND2(canvas_light_set_texture_offset, RID, const Vector2 &) | 
					
						
							|  |  |  | 	BIND2(canvas_light_set_color, RID, const Color &) | 
					
						
							|  |  |  | 	BIND2(canvas_light_set_height, RID, float) | 
					
						
							|  |  |  | 	BIND2(canvas_light_set_energy, RID, float) | 
					
						
							|  |  |  | 	BIND3(canvas_light_set_z_range, RID, int, int) | 
					
						
							|  |  |  | 	BIND3(canvas_light_set_layer_range, RID, int, int) | 
					
						
							|  |  |  | 	BIND2(canvas_light_set_item_cull_mask, RID, int) | 
					
						
							|  |  |  | 	BIND2(canvas_light_set_item_shadow_cull_mask, RID, int) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND2(canvas_light_set_mode, RID, CanvasLightMode) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND2(canvas_light_set_shadow_enabled, RID, bool) | 
					
						
							|  |  |  | 	BIND2(canvas_light_set_shadow_buffer_size, RID, int) | 
					
						
							|  |  |  | 	BIND2(canvas_light_set_shadow_filter, RID, CanvasLightShadowFilter) | 
					
						
							|  |  |  | 	BIND2(canvas_light_set_shadow_color, RID, const Color &) | 
					
						
							| 
									
										
										
										
											2017-06-13 01:23:04 -03:00
										 |  |  | 	BIND2(canvas_light_set_shadow_smooth, RID, float) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BIND0R(RID, canvas_light_occluder_create) | 
					
						
							|  |  |  | 	BIND2(canvas_light_occluder_attach_to_canvas, RID, RID) | 
					
						
							|  |  |  | 	BIND2(canvas_light_occluder_set_enabled, RID, bool) | 
					
						
							|  |  |  | 	BIND2(canvas_light_occluder_set_polygon, RID, RID) | 
					
						
							|  |  |  | 	BIND2(canvas_light_occluder_set_transform, RID, const Transform2D &) | 
					
						
							|  |  |  | 	BIND2(canvas_light_occluder_set_light_mask, RID, int) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND0R(RID, canvas_occluder_polygon_create) | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 	BIND3(canvas_occluder_polygon_set_shape, RID, const Vector<Vector2> &, bool) | 
					
						
							|  |  |  | 	BIND2(canvas_occluder_polygon_set_shape_as_lines, RID, const Vector<Vector2> &) | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BIND2(canvas_occluder_polygon_set_cull_mode, RID, CanvasOccluderPolygonCullMode) | 
					
						
							| 
									
										
										
										
											2015-03-02 00:54:10 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-16 23:52:00 -03:00
										 |  |  | 	/* GLOBAL VARIABLES */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #undef BINDBASE
 | 
					
						
							|  |  |  | //from now on, calls forwarded to this singleton
 | 
					
						
							|  |  |  | #define BINDBASE RSG::storage
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND3(global_variable_add, const StringName &, GlobalVariableType, const Variant &) | 
					
						
							|  |  |  | 	BIND1(global_variable_remove, const StringName &) | 
					
						
							|  |  |  | 	BIND0RC(Vector<StringName>, global_variable_get_list) | 
					
						
							|  |  |  | 	BIND2(global_variable_set, const StringName &, const Variant &) | 
					
						
							|  |  |  | 	BIND2(global_variable_set_override, const StringName &, const Variant &) | 
					
						
							|  |  |  | 	BIND1RC(GlobalVariableType, global_variable_get_type, const StringName &) | 
					
						
							|  |  |  | 	BIND1RC(Variant, global_variable_get, const StringName &) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BIND1(global_variables_load_settings, bool) | 
					
						
							|  |  |  | 	BIND0(global_variables_clear) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	/* BLACK BARS */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	virtual void black_bars_set_margins(int p_left, int p_top, int p_right, int p_bottom); | 
					
						
							| 
									
										
										
										
											2014-06-11 10:41:03 -03:00
										 |  |  | 	virtual void black_bars_set_images(RID p_left, RID p_top, RID p_right, RID p_bottom); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 	/* FREE */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual void free(RID p_rid); ///< free RIDs associated with the visual server
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* EVENT QUEUING */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-09 00:23:50 -03:00
										 |  |  | 	virtual void request_frame_drawn_callback(Object *p_where, const StringName &p_method, const Variant &p_userdata); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-09 08:11:43 +02:00
										 |  |  | 	virtual void draw(bool p_swap_buffers, double frame_step); | 
					
						
							| 
									
										
										
										
											2015-06-06 22:06:58 -03:00
										 |  |  | 	virtual void sync(); | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 	virtual bool has_changed() const; | 
					
						
							| 
									
										
										
										
											2016-03-09 00:00:52 +01:00
										 |  |  | 	virtual void init(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	virtual void finish(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 	/* STATUS INFORMATION */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	virtual int get_render_info(RenderInfo p_info); | 
					
						
							| 
									
										
										
										
											2019-09-13 20:08:05 +02:00
										 |  |  | 	virtual String get_video_adapter_name() const; | 
					
						
							|  |  |  | 	virtual String get_video_adapter_vendor() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-20 17:58:06 -03:00
										 |  |  | 	virtual void set_frame_profiling_enabled(bool p_enable); | 
					
						
							|  |  |  | 	virtual Vector<FrameProfileArea> get_frame_profile(); | 
					
						
							|  |  |  | 	virtual uint64_t get_frame_profile_frame(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 	virtual RID get_test_cube(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 	/* TESTING */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-13 22:37:19 +02:00
										 |  |  | 	virtual void set_boot_image(const Ref<Image> &p_image, const Color &p_color, bool p_scale, bool p_use_filter = true); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual void set_default_clear_color(const Color &p_color); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 	virtual bool has_feature(Features p_feature) const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	virtual bool has_os_feature(const String &p_feature) const; | 
					
						
							| 
									
										
										
										
											2017-06-11 15:52:03 -03:00
										 |  |  | 	virtual void set_debug_generate_wireframes(bool p_generate); | 
					
						
							| 
									
										
										
										
											2016-10-03 16:33:42 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-16 17:09:25 -03:00
										 |  |  | 	virtual void call_set_use_vsync(bool p_enable); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-28 20:32:40 -03:00
										 |  |  | 	virtual bool is_low_end() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-25 10:33:28 -03:00
										 |  |  | 	virtual void sdfgi_set_debug_probe_select(const Vector3 &p_position, const Vector3 &p_dir); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-27 15:21:27 -03:00
										 |  |  | 	RenderingServerRaster(); | 
					
						
							|  |  |  | 	~RenderingServerRaster(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-03 23:46:24 -03:00
										 |  |  | #undef DISPLAY_CHANGED
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #undef BIND0R
 | 
					
						
							|  |  |  | #undef BIND1RC
 | 
					
						
							|  |  |  | #undef BIND2RC
 | 
					
						
							|  |  |  | #undef BIND3RC
 | 
					
						
							|  |  |  | #undef BIND4RC
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #undef BIND1
 | 
					
						
							|  |  |  | #undef BIND2
 | 
					
						
							|  |  |  | #undef BIND3
 | 
					
						
							|  |  |  | #undef BIND4
 | 
					
						
							|  |  |  | #undef BIND5
 | 
					
						
							|  |  |  | #undef BIND6
 | 
					
						
							|  |  |  | #undef BIND7
 | 
					
						
							|  |  |  | #undef BIND8
 | 
					
						
							| 
									
										
										
										
											2016-10-19 11:14:41 -03:00
										 |  |  | #undef BIND9
 | 
					
						
							| 
									
										
										
										
											2016-10-03 23:46:24 -03:00
										 |  |  | #undef BIND10
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 |