rendering_device_binds.h 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  1. /**************************************************************************/
  2. /* rendering_device_binds.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef RENDERING_DEVICE_BINDS_H
  31. #define RENDERING_DEVICE_BINDS_H
  32. #include "servers/rendering/rendering_device.h"
  33. #define RD_SETGET(m_type, m_member) \
  34. void set_##m_member(m_type p_##m_member) { base.m_member = p_##m_member; } \
  35. m_type get_##m_member() const { return base.m_member; }
  36. #define RD_BIND(m_variant_type, m_class, m_member) \
  37. ClassDB::bind_method(D_METHOD("set_" _MKSTR(m_member), "p_" _MKSTR(member)), &m_class::set_##m_member); \
  38. ClassDB::bind_method(D_METHOD("get_" _MKSTR(m_member)), &m_class::get_##m_member); \
  39. ADD_PROPERTY(PropertyInfo(m_variant_type, #m_member), "set_" _MKSTR(m_member), "get_" _MKSTR(m_member))
  40. #define RD_SETGET_SUB(m_type, m_sub, m_member) \
  41. void set_##m_sub##_##m_member(m_type p_##m_member) { base.m_sub.m_member = p_##m_member; } \
  42. m_type get_##m_sub##_##m_member() const { return base.m_sub.m_member; }
  43. #define RD_BIND_SUB(m_variant_type, m_class, m_sub, m_member) \
  44. ClassDB::bind_method(D_METHOD("set_" _MKSTR(m_sub) "_" _MKSTR(m_member), "p_" _MKSTR(member)), &m_class::set_##m_sub##_##m_member); \
  45. ClassDB::bind_method(D_METHOD("get_" _MKSTR(m_sub) "_" _MKSTR(m_member)), &m_class::get_##m_sub##_##m_member); \
  46. ADD_PROPERTY(PropertyInfo(m_variant_type, _MKSTR(m_sub) "_" _MKSTR(m_member)), "set_" _MKSTR(m_sub) "_" _MKSTR(m_member), "get_" _MKSTR(m_sub) "_" _MKSTR(m_member))
  47. class RDTextureFormat : public RefCounted {
  48. GDCLASS(RDTextureFormat, RefCounted)
  49. friend class RenderingDevice;
  50. friend class RenderSceneBuffersRD;
  51. RD::TextureFormat base;
  52. public:
  53. RD_SETGET(RD::DataFormat, format)
  54. RD_SETGET(uint32_t, width)
  55. RD_SETGET(uint32_t, height)
  56. RD_SETGET(uint32_t, depth)
  57. RD_SETGET(uint32_t, array_layers)
  58. RD_SETGET(uint32_t, mipmaps)
  59. RD_SETGET(RD::TextureType, texture_type)
  60. RD_SETGET(RD::TextureSamples, samples)
  61. RD_SETGET(BitField<RenderingDevice::TextureUsageBits>, usage_bits)
  62. void add_shareable_format(RD::DataFormat p_format) { base.shareable_formats.push_back(p_format); }
  63. void remove_shareable_format(RD::DataFormat p_format) { base.shareable_formats.erase(p_format); }
  64. protected:
  65. static void _bind_methods() {
  66. RD_BIND(Variant::INT, RDTextureFormat, format);
  67. RD_BIND(Variant::INT, RDTextureFormat, width);
  68. RD_BIND(Variant::INT, RDTextureFormat, height);
  69. RD_BIND(Variant::INT, RDTextureFormat, depth);
  70. RD_BIND(Variant::INT, RDTextureFormat, array_layers);
  71. RD_BIND(Variant::INT, RDTextureFormat, mipmaps);
  72. RD_BIND(Variant::INT, RDTextureFormat, texture_type);
  73. RD_BIND(Variant::INT, RDTextureFormat, samples);
  74. RD_BIND(Variant::INT, RDTextureFormat, usage_bits);
  75. ClassDB::bind_method(D_METHOD("add_shareable_format", "format"), &RDTextureFormat::add_shareable_format);
  76. ClassDB::bind_method(D_METHOD("remove_shareable_format", "format"), &RDTextureFormat::remove_shareable_format);
  77. }
  78. };
  79. class RDTextureView : public RefCounted {
  80. GDCLASS(RDTextureView, RefCounted)
  81. friend class RenderingDevice;
  82. friend class RenderSceneBuffersRD;
  83. RD::TextureView base;
  84. public:
  85. RD_SETGET(RD::DataFormat, format_override)
  86. RD_SETGET(RD::TextureSwizzle, swizzle_r)
  87. RD_SETGET(RD::TextureSwizzle, swizzle_g)
  88. RD_SETGET(RD::TextureSwizzle, swizzle_b)
  89. RD_SETGET(RD::TextureSwizzle, swizzle_a)
  90. protected:
  91. static void _bind_methods() {
  92. RD_BIND(Variant::INT, RDTextureView, format_override);
  93. RD_BIND(Variant::INT, RDTextureView, swizzle_r);
  94. RD_BIND(Variant::INT, RDTextureView, swizzle_g);
  95. RD_BIND(Variant::INT, RDTextureView, swizzle_b);
  96. RD_BIND(Variant::INT, RDTextureView, swizzle_a);
  97. }
  98. };
  99. class RDAttachmentFormat : public RefCounted {
  100. GDCLASS(RDAttachmentFormat, RefCounted)
  101. friend class RenderingDevice;
  102. RD::AttachmentFormat base;
  103. public:
  104. RD_SETGET(RD::DataFormat, format)
  105. RD_SETGET(RD::TextureSamples, samples)
  106. RD_SETGET(uint32_t, usage_flags)
  107. protected:
  108. static void _bind_methods() {
  109. RD_BIND(Variant::INT, RDAttachmentFormat, format);
  110. RD_BIND(Variant::INT, RDAttachmentFormat, samples);
  111. RD_BIND(Variant::INT, RDAttachmentFormat, usage_flags);
  112. }
  113. };
  114. class RDFramebufferPass : public RefCounted {
  115. GDCLASS(RDFramebufferPass, RefCounted)
  116. friend class RenderingDevice;
  117. friend class FramebufferCacheRD;
  118. RD::FramebufferPass base;
  119. public:
  120. RD_SETGET(PackedInt32Array, color_attachments)
  121. RD_SETGET(PackedInt32Array, input_attachments)
  122. RD_SETGET(PackedInt32Array, resolve_attachments)
  123. RD_SETGET(PackedInt32Array, preserve_attachments)
  124. RD_SETGET(int32_t, depth_attachment)
  125. protected:
  126. enum {
  127. ATTACHMENT_UNUSED = -1
  128. };
  129. static void _bind_methods() {
  130. RD_BIND(Variant::PACKED_INT32_ARRAY, RDFramebufferPass, color_attachments);
  131. RD_BIND(Variant::PACKED_INT32_ARRAY, RDFramebufferPass, input_attachments);
  132. RD_BIND(Variant::PACKED_INT32_ARRAY, RDFramebufferPass, resolve_attachments);
  133. RD_BIND(Variant::PACKED_INT32_ARRAY, RDFramebufferPass, preserve_attachments);
  134. RD_BIND(Variant::INT, RDFramebufferPass, depth_attachment);
  135. BIND_CONSTANT(ATTACHMENT_UNUSED);
  136. }
  137. };
  138. class RDSamplerState : public RefCounted {
  139. GDCLASS(RDSamplerState, RefCounted)
  140. friend class RenderingDevice;
  141. RD::SamplerState base;
  142. public:
  143. RD_SETGET(RD::SamplerFilter, mag_filter)
  144. RD_SETGET(RD::SamplerFilter, min_filter)
  145. RD_SETGET(RD::SamplerFilter, mip_filter)
  146. RD_SETGET(RD::SamplerRepeatMode, repeat_u)
  147. RD_SETGET(RD::SamplerRepeatMode, repeat_v)
  148. RD_SETGET(RD::SamplerRepeatMode, repeat_w)
  149. RD_SETGET(float, lod_bias)
  150. RD_SETGET(bool, use_anisotropy)
  151. RD_SETGET(float, anisotropy_max)
  152. RD_SETGET(bool, enable_compare)
  153. RD_SETGET(RD::CompareOperator, compare_op)
  154. RD_SETGET(float, min_lod)
  155. RD_SETGET(float, max_lod)
  156. RD_SETGET(RD::SamplerBorderColor, border_color)
  157. RD_SETGET(bool, unnormalized_uvw)
  158. protected:
  159. static void _bind_methods() {
  160. RD_BIND(Variant::INT, RDSamplerState, mag_filter);
  161. RD_BIND(Variant::INT, RDSamplerState, min_filter);
  162. RD_BIND(Variant::INT, RDSamplerState, mip_filter);
  163. RD_BIND(Variant::INT, RDSamplerState, repeat_u);
  164. RD_BIND(Variant::INT, RDSamplerState, repeat_v);
  165. RD_BIND(Variant::INT, RDSamplerState, repeat_w);
  166. RD_BIND(Variant::FLOAT, RDSamplerState, lod_bias);
  167. RD_BIND(Variant::BOOL, RDSamplerState, use_anisotropy);
  168. RD_BIND(Variant::FLOAT, RDSamplerState, anisotropy_max);
  169. RD_BIND(Variant::BOOL, RDSamplerState, enable_compare);
  170. RD_BIND(Variant::INT, RDSamplerState, compare_op);
  171. RD_BIND(Variant::FLOAT, RDSamplerState, min_lod);
  172. RD_BIND(Variant::FLOAT, RDSamplerState, max_lod);
  173. RD_BIND(Variant::INT, RDSamplerState, border_color);
  174. RD_BIND(Variant::BOOL, RDSamplerState, unnormalized_uvw);
  175. }
  176. };
  177. class RDVertexAttribute : public RefCounted {
  178. GDCLASS(RDVertexAttribute, RefCounted)
  179. friend class RenderingDevice;
  180. RD::VertexAttribute base;
  181. public:
  182. RD_SETGET(uint32_t, location)
  183. RD_SETGET(uint32_t, offset)
  184. RD_SETGET(RD::DataFormat, format)
  185. RD_SETGET(uint32_t, stride)
  186. RD_SETGET(RD::VertexFrequency, frequency)
  187. protected:
  188. static void _bind_methods() {
  189. RD_BIND(Variant::INT, RDVertexAttribute, location);
  190. RD_BIND(Variant::INT, RDVertexAttribute, offset);
  191. RD_BIND(Variant::INT, RDVertexAttribute, format);
  192. RD_BIND(Variant::INT, RDVertexAttribute, stride);
  193. RD_BIND(Variant::INT, RDVertexAttribute, frequency);
  194. }
  195. };
  196. class RDShaderSource : public RefCounted {
  197. GDCLASS(RDShaderSource, RefCounted)
  198. String source[RD::SHADER_STAGE_MAX];
  199. RD::ShaderLanguage language = RD::SHADER_LANGUAGE_GLSL;
  200. public:
  201. void set_stage_source(RD::ShaderStage p_stage, const String &p_source) {
  202. ERR_FAIL_INDEX(p_stage, RD::SHADER_STAGE_MAX);
  203. source[p_stage] = p_source;
  204. }
  205. String get_stage_source(RD::ShaderStage p_stage) const {
  206. ERR_FAIL_INDEX_V(p_stage, RD::SHADER_STAGE_MAX, String());
  207. return source[p_stage];
  208. }
  209. void set_language(RD::ShaderLanguage p_language) {
  210. language = p_language;
  211. }
  212. RD::ShaderLanguage get_language() const {
  213. return language;
  214. }
  215. protected:
  216. static void _bind_methods() {
  217. ClassDB::bind_method(D_METHOD("set_stage_source", "stage", "source"), &RDShaderSource::set_stage_source);
  218. ClassDB::bind_method(D_METHOD("get_stage_source", "stage"), &RDShaderSource::get_stage_source);
  219. ClassDB::bind_method(D_METHOD("set_language", "language"), &RDShaderSource::set_language);
  220. ClassDB::bind_method(D_METHOD("get_language"), &RDShaderSource::get_language);
  221. ADD_GROUP("Source", "source_");
  222. ADD_PROPERTYI(PropertyInfo(Variant::STRING, "source_vertex"), "set_stage_source", "get_stage_source", RD::SHADER_STAGE_VERTEX);
  223. ADD_PROPERTYI(PropertyInfo(Variant::STRING, "source_fragment"), "set_stage_source", "get_stage_source", RD::SHADER_STAGE_FRAGMENT);
  224. ADD_PROPERTYI(PropertyInfo(Variant::STRING, "source_tesselation_control"), "set_stage_source", "get_stage_source", RD::SHADER_STAGE_TESSELATION_CONTROL);
  225. ADD_PROPERTYI(PropertyInfo(Variant::STRING, "source_tesselation_evaluation"), "set_stage_source", "get_stage_source", RD::SHADER_STAGE_TESSELATION_EVALUATION);
  226. ADD_PROPERTYI(PropertyInfo(Variant::STRING, "source_compute"), "set_stage_source", "get_stage_source", RD::SHADER_STAGE_COMPUTE);
  227. ADD_GROUP("Syntax", "source_");
  228. ADD_PROPERTY(PropertyInfo(Variant::INT, "language", PROPERTY_HINT_RANGE, "GLSL,HLSL"), "set_language", "get_language");
  229. }
  230. };
  231. class RDShaderSPIRV : public Resource {
  232. GDCLASS(RDShaderSPIRV, Resource)
  233. Vector<uint8_t> bytecode[RD::SHADER_STAGE_MAX];
  234. String compile_error[RD::SHADER_STAGE_MAX];
  235. public:
  236. void set_stage_bytecode(RD::ShaderStage p_stage, const Vector<uint8_t> &p_bytecode) {
  237. ERR_FAIL_INDEX(p_stage, RD::SHADER_STAGE_MAX);
  238. bytecode[p_stage] = p_bytecode;
  239. }
  240. Vector<uint8_t> get_stage_bytecode(RD::ShaderStage p_stage) const {
  241. ERR_FAIL_INDEX_V(p_stage, RD::SHADER_STAGE_MAX, Vector<uint8_t>());
  242. return bytecode[p_stage];
  243. }
  244. Vector<RD::ShaderStageSPIRVData> get_stages() const {
  245. Vector<RD::ShaderStageSPIRVData> stages;
  246. for (int i = 0; i < RD::SHADER_STAGE_MAX; i++) {
  247. if (bytecode[i].size()) {
  248. RD::ShaderStageSPIRVData stage;
  249. stage.shader_stage = RD::ShaderStage(i);
  250. stage.spirv = bytecode[i];
  251. stages.push_back(stage);
  252. }
  253. }
  254. return stages;
  255. }
  256. void set_stage_compile_error(RD::ShaderStage p_stage, const String &p_compile_error) {
  257. ERR_FAIL_INDEX(p_stage, RD::SHADER_STAGE_MAX);
  258. compile_error[p_stage] = p_compile_error;
  259. }
  260. String get_stage_compile_error(RD::ShaderStage p_stage) const {
  261. ERR_FAIL_INDEX_V(p_stage, RD::SHADER_STAGE_MAX, String());
  262. return compile_error[p_stage];
  263. }
  264. protected:
  265. static void _bind_methods() {
  266. ClassDB::bind_method(D_METHOD("set_stage_bytecode", "stage", "bytecode"), &RDShaderSPIRV::set_stage_bytecode);
  267. ClassDB::bind_method(D_METHOD("get_stage_bytecode", "stage"), &RDShaderSPIRV::get_stage_bytecode);
  268. ClassDB::bind_method(D_METHOD("set_stage_compile_error", "stage", "compile_error"), &RDShaderSPIRV::set_stage_compile_error);
  269. ClassDB::bind_method(D_METHOD("get_stage_compile_error", "stage"), &RDShaderSPIRV::get_stage_compile_error);
  270. ADD_GROUP("Bytecode", "bytecode_");
  271. ADD_PROPERTYI(PropertyInfo(Variant::PACKED_BYTE_ARRAY, "bytecode_vertex"), "set_stage_bytecode", "get_stage_bytecode", RD::SHADER_STAGE_VERTEX);
  272. ADD_PROPERTYI(PropertyInfo(Variant::PACKED_BYTE_ARRAY, "bytecode_fragment"), "set_stage_bytecode", "get_stage_bytecode", RD::SHADER_STAGE_FRAGMENT);
  273. ADD_PROPERTYI(PropertyInfo(Variant::PACKED_BYTE_ARRAY, "bytecode_tesselation_control"), "set_stage_bytecode", "get_stage_bytecode", RD::SHADER_STAGE_TESSELATION_CONTROL);
  274. ADD_PROPERTYI(PropertyInfo(Variant::PACKED_BYTE_ARRAY, "bytecode_tesselation_evaluation"), "set_stage_bytecode", "get_stage_bytecode", RD::SHADER_STAGE_TESSELATION_EVALUATION);
  275. ADD_PROPERTYI(PropertyInfo(Variant::PACKED_BYTE_ARRAY, "bytecode_compute"), "set_stage_bytecode", "get_stage_bytecode", RD::SHADER_STAGE_COMPUTE);
  276. ADD_GROUP("Compile Error", "compile_error_");
  277. ADD_PROPERTYI(PropertyInfo(Variant::STRING, "compile_error_vertex"), "set_stage_compile_error", "get_stage_compile_error", RD::SHADER_STAGE_VERTEX);
  278. ADD_PROPERTYI(PropertyInfo(Variant::STRING, "compile_error_fragment"), "set_stage_compile_error", "get_stage_compile_error", RD::SHADER_STAGE_FRAGMENT);
  279. ADD_PROPERTYI(PropertyInfo(Variant::STRING, "compile_error_tesselation_control"), "set_stage_compile_error", "get_stage_compile_error", RD::SHADER_STAGE_TESSELATION_CONTROL);
  280. ADD_PROPERTYI(PropertyInfo(Variant::STRING, "compile_error_tesselation_evaluation"), "set_stage_compile_error", "get_stage_compile_error", RD::SHADER_STAGE_TESSELATION_EVALUATION);
  281. ADD_PROPERTYI(PropertyInfo(Variant::STRING, "compile_error_compute"), "set_stage_compile_error", "get_stage_compile_error", RD::SHADER_STAGE_COMPUTE);
  282. }
  283. };
  284. class RDShaderFile : public Resource {
  285. GDCLASS(RDShaderFile, Resource)
  286. HashMap<StringName, Ref<RDShaderSPIRV>> versions;
  287. String base_error;
  288. public:
  289. void set_bytecode(const Ref<RDShaderSPIRV> &p_bytecode, const StringName &p_version = StringName()) {
  290. ERR_FAIL_COND(p_bytecode.is_null());
  291. versions[p_version] = p_bytecode;
  292. emit_changed();
  293. }
  294. Ref<RDShaderSPIRV> get_spirv(const StringName &p_version = StringName()) const {
  295. ERR_FAIL_COND_V(!versions.has(p_version), Ref<RDShaderSPIRV>());
  296. return versions[p_version];
  297. }
  298. Vector<RD::ShaderStageSPIRVData> get_spirv_stages(const StringName &p_version = StringName()) const {
  299. ERR_FAIL_COND_V(!versions.has(p_version), Vector<RD::ShaderStageSPIRVData>());
  300. return versions[p_version]->get_stages();
  301. }
  302. TypedArray<StringName> get_version_list() const {
  303. Vector<StringName> vnames;
  304. for (const KeyValue<StringName, Ref<RDShaderSPIRV>> &E : versions) {
  305. vnames.push_back(E.key);
  306. }
  307. vnames.sort_custom<StringName::AlphCompare>();
  308. TypedArray<StringName> ret;
  309. ret.resize(vnames.size());
  310. for (int i = 0; i < vnames.size(); i++) {
  311. ret[i] = vnames[i];
  312. }
  313. return ret;
  314. }
  315. void set_base_error(const String &p_error) {
  316. base_error = p_error;
  317. emit_changed();
  318. }
  319. String get_base_error() const {
  320. return base_error;
  321. }
  322. void print_errors(const String &p_file) {
  323. if (!base_error.is_empty()) {
  324. ERR_PRINT("Error parsing shader '" + p_file + "':\n\n" + base_error);
  325. } else {
  326. for (KeyValue<StringName, Ref<RDShaderSPIRV>> &E : versions) {
  327. for (int i = 0; i < RD::SHADER_STAGE_MAX; i++) {
  328. String error = E.value->get_stage_compile_error(RD::ShaderStage(i));
  329. if (!error.is_empty()) {
  330. static const char *stage_str[RD::SHADER_STAGE_MAX] = {
  331. "vertex",
  332. "fragment",
  333. "tesselation_control",
  334. "tesselation_evaluation",
  335. "compute"
  336. };
  337. ERR_PRINT("Error parsing shader '" + p_file + "', version '" + String(E.key) + "', stage '" + stage_str[i] + "':\n\n" + error);
  338. }
  339. }
  340. }
  341. }
  342. }
  343. typedef String (*OpenIncludeFunction)(const String &, void *userdata);
  344. Error parse_versions_from_text(const String &p_text, const String p_defines = String(), OpenIncludeFunction p_include_func = nullptr, void *p_include_func_userdata = nullptr);
  345. protected:
  346. Dictionary _get_versions() const {
  347. TypedArray<StringName> vnames = get_version_list();
  348. Dictionary ret;
  349. for (int i = 0; i < vnames.size(); i++) {
  350. ret[vnames[i]] = versions[vnames[i]];
  351. }
  352. return ret;
  353. }
  354. void _set_versions(const Dictionary &p_versions) {
  355. versions.clear();
  356. List<Variant> keys;
  357. p_versions.get_key_list(&keys);
  358. for (const Variant &E : keys) {
  359. StringName vname = E;
  360. Ref<RDShaderSPIRV> bc = p_versions[E];
  361. ERR_CONTINUE(bc.is_null());
  362. versions[vname] = bc;
  363. }
  364. emit_changed();
  365. }
  366. static void _bind_methods() {
  367. ClassDB::bind_method(D_METHOD("set_bytecode", "bytecode", "version"), &RDShaderFile::set_bytecode, DEFVAL(StringName()));
  368. ClassDB::bind_method(D_METHOD("get_spirv", "version"), &RDShaderFile::get_spirv, DEFVAL(StringName()));
  369. ClassDB::bind_method(D_METHOD("get_version_list"), &RDShaderFile::get_version_list);
  370. ClassDB::bind_method(D_METHOD("set_base_error", "error"), &RDShaderFile::set_base_error);
  371. ClassDB::bind_method(D_METHOD("get_base_error"), &RDShaderFile::get_base_error);
  372. ClassDB::bind_method(D_METHOD("_set_versions", "versions"), &RDShaderFile::_set_versions);
  373. ClassDB::bind_method(D_METHOD("_get_versions"), &RDShaderFile::_get_versions);
  374. ADD_PROPERTY(PropertyInfo(Variant::DICTIONARY, "_versions", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NO_EDITOR | PROPERTY_USAGE_INTERNAL), "_set_versions", "_get_versions");
  375. ADD_PROPERTY(PropertyInfo(Variant::STRING, "base_error"), "set_base_error", "get_base_error");
  376. }
  377. };
  378. class RDUniform : public RefCounted {
  379. GDCLASS(RDUniform, RefCounted)
  380. friend class RenderingDevice;
  381. friend class UniformSetCacheRD;
  382. RD::Uniform base;
  383. public:
  384. RD_SETGET(RD::UniformType, uniform_type)
  385. RD_SETGET(int32_t, binding)
  386. void add_id(const RID &p_id) { base.append_id(p_id); }
  387. void clear_ids() { base.clear_ids(); }
  388. TypedArray<RID> get_ids() const {
  389. TypedArray<RID> ids;
  390. for (uint32_t i = 0; i < base.get_id_count(); i++) {
  391. ids.push_back(base.get_id(i));
  392. }
  393. return ids;
  394. }
  395. protected:
  396. void _set_ids(const TypedArray<RID> &p_ids) {
  397. base.clear_ids();
  398. for (int i = 0; i < p_ids.size(); i++) {
  399. RID id = p_ids[i];
  400. ERR_FAIL_COND(id.is_null());
  401. base.append_id(id);
  402. }
  403. }
  404. static void _bind_methods() {
  405. RD_BIND(Variant::INT, RDUniform, uniform_type);
  406. RD_BIND(Variant::INT, RDUniform, binding);
  407. ClassDB::bind_method(D_METHOD("add_id", "id"), &RDUniform::add_id);
  408. ClassDB::bind_method(D_METHOD("clear_ids"), &RDUniform::clear_ids);
  409. ClassDB::bind_method(D_METHOD("_set_ids", "ids"), &RDUniform::_set_ids);
  410. ClassDB::bind_method(D_METHOD("get_ids"), &RDUniform::get_ids);
  411. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "_ids", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_DEFAULT | PROPERTY_USAGE_INTERNAL), "_set_ids", "get_ids");
  412. }
  413. };
  414. class RDPipelineSpecializationConstant : public RefCounted {
  415. GDCLASS(RDPipelineSpecializationConstant, RefCounted)
  416. friend class RenderingDevice;
  417. Variant value = false;
  418. uint32_t constant_id = 0;
  419. public:
  420. void set_value(const Variant &p_value) {
  421. ERR_FAIL_COND(p_value.get_type() != Variant::BOOL && p_value.get_type() != Variant::INT && p_value.get_type() != Variant::FLOAT);
  422. value = p_value;
  423. }
  424. Variant get_value() const { return value; }
  425. void set_constant_id(uint32_t p_id) {
  426. constant_id = p_id;
  427. }
  428. uint32_t get_constant_id() const {
  429. return constant_id;
  430. }
  431. protected:
  432. static void _bind_methods() {
  433. ClassDB::bind_method(D_METHOD("set_value", "value"), &RDPipelineSpecializationConstant::set_value);
  434. ClassDB::bind_method(D_METHOD("get_value"), &RDPipelineSpecializationConstant::get_value);
  435. ClassDB::bind_method(D_METHOD("set_constant_id", "constant_id"), &RDPipelineSpecializationConstant::set_constant_id);
  436. ClassDB::bind_method(D_METHOD("get_constant_id"), &RDPipelineSpecializationConstant::get_constant_id);
  437. ADD_PROPERTY(PropertyInfo(Variant::NIL, "value", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NIL_IS_VARIANT), "set_value", "get_value");
  438. ADD_PROPERTY(PropertyInfo(Variant::INT, "constant_id", PROPERTY_HINT_RANGE, "0,65535,0"), "set_constant_id", "get_constant_id");
  439. }
  440. };
  441. class RDPipelineRasterizationState : public RefCounted {
  442. GDCLASS(RDPipelineRasterizationState, RefCounted)
  443. friend class RenderingDevice;
  444. RD::PipelineRasterizationState base;
  445. public:
  446. RD_SETGET(bool, enable_depth_clamp)
  447. RD_SETGET(bool, discard_primitives)
  448. RD_SETGET(bool, wireframe)
  449. RD_SETGET(RD::PolygonCullMode, cull_mode)
  450. RD_SETGET(RD::PolygonFrontFace, front_face)
  451. RD_SETGET(bool, depth_bias_enabled)
  452. RD_SETGET(float, depth_bias_constant_factor)
  453. RD_SETGET(float, depth_bias_clamp)
  454. RD_SETGET(float, depth_bias_slope_factor)
  455. RD_SETGET(float, line_width)
  456. RD_SETGET(uint32_t, patch_control_points)
  457. protected:
  458. static void _bind_methods() {
  459. RD_BIND(Variant::BOOL, RDPipelineRasterizationState, enable_depth_clamp);
  460. RD_BIND(Variant::BOOL, RDPipelineRasterizationState, discard_primitives);
  461. RD_BIND(Variant::BOOL, RDPipelineRasterizationState, wireframe);
  462. RD_BIND(Variant::INT, RDPipelineRasterizationState, cull_mode);
  463. RD_BIND(Variant::INT, RDPipelineRasterizationState, front_face);
  464. RD_BIND(Variant::BOOL, RDPipelineRasterizationState, depth_bias_enabled);
  465. RD_BIND(Variant::FLOAT, RDPipelineRasterizationState, depth_bias_constant_factor);
  466. RD_BIND(Variant::FLOAT, RDPipelineRasterizationState, depth_bias_clamp);
  467. RD_BIND(Variant::FLOAT, RDPipelineRasterizationState, depth_bias_slope_factor);
  468. RD_BIND(Variant::FLOAT, RDPipelineRasterizationState, line_width);
  469. RD_BIND(Variant::INT, RDPipelineRasterizationState, patch_control_points);
  470. }
  471. };
  472. class RDPipelineMultisampleState : public RefCounted {
  473. GDCLASS(RDPipelineMultisampleState, RefCounted)
  474. friend class RenderingDevice;
  475. RD::PipelineMultisampleState base;
  476. TypedArray<int64_t> sample_masks;
  477. public:
  478. RD_SETGET(RD::TextureSamples, sample_count)
  479. RD_SETGET(bool, enable_sample_shading)
  480. RD_SETGET(float, min_sample_shading)
  481. RD_SETGET(bool, enable_alpha_to_coverage)
  482. RD_SETGET(bool, enable_alpha_to_one)
  483. void set_sample_masks(const TypedArray<int64_t> &p_masks) { sample_masks = p_masks; }
  484. TypedArray<int64_t> get_sample_masks() const { return sample_masks; }
  485. protected:
  486. static void _bind_methods() {
  487. RD_BIND(Variant::INT, RDPipelineMultisampleState, sample_count);
  488. RD_BIND(Variant::BOOL, RDPipelineMultisampleState, enable_sample_shading);
  489. RD_BIND(Variant::FLOAT, RDPipelineMultisampleState, min_sample_shading);
  490. RD_BIND(Variant::BOOL, RDPipelineMultisampleState, enable_alpha_to_coverage);
  491. RD_BIND(Variant::BOOL, RDPipelineMultisampleState, enable_alpha_to_one);
  492. ClassDB::bind_method(D_METHOD("set_sample_masks", "masks"), &RDPipelineMultisampleState::set_sample_masks);
  493. ClassDB::bind_method(D_METHOD("get_sample_masks"), &RDPipelineMultisampleState::get_sample_masks);
  494. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "sample_masks", PROPERTY_HINT_ARRAY_TYPE, "int"), "set_sample_masks", "get_sample_masks");
  495. }
  496. };
  497. class RDPipelineDepthStencilState : public RefCounted {
  498. GDCLASS(RDPipelineDepthStencilState, RefCounted)
  499. friend class RenderingDevice;
  500. RD::PipelineDepthStencilState base;
  501. public:
  502. RD_SETGET(bool, enable_depth_test)
  503. RD_SETGET(bool, enable_depth_write)
  504. RD_SETGET(RD::CompareOperator, depth_compare_operator)
  505. RD_SETGET(bool, enable_depth_range)
  506. RD_SETGET(float, depth_range_min)
  507. RD_SETGET(float, depth_range_max)
  508. RD_SETGET(bool, enable_stencil)
  509. RD_SETGET_SUB(RD::StencilOperation, front_op, fail)
  510. RD_SETGET_SUB(RD::StencilOperation, front_op, pass)
  511. RD_SETGET_SUB(RD::StencilOperation, front_op, depth_fail)
  512. RD_SETGET_SUB(RD::CompareOperator, front_op, compare)
  513. RD_SETGET_SUB(uint32_t, front_op, compare_mask)
  514. RD_SETGET_SUB(uint32_t, front_op, write_mask)
  515. RD_SETGET_SUB(uint32_t, front_op, reference)
  516. RD_SETGET_SUB(RD::StencilOperation, back_op, fail)
  517. RD_SETGET_SUB(RD::StencilOperation, back_op, pass)
  518. RD_SETGET_SUB(RD::StencilOperation, back_op, depth_fail)
  519. RD_SETGET_SUB(RD::CompareOperator, back_op, compare)
  520. RD_SETGET_SUB(uint32_t, back_op, compare_mask)
  521. RD_SETGET_SUB(uint32_t, back_op, write_mask)
  522. RD_SETGET_SUB(uint32_t, back_op, reference)
  523. protected:
  524. static void _bind_methods() {
  525. RD_BIND(Variant::BOOL, RDPipelineDepthStencilState, enable_depth_test);
  526. RD_BIND(Variant::BOOL, RDPipelineDepthStencilState, enable_depth_write);
  527. RD_BIND(Variant::INT, RDPipelineDepthStencilState, depth_compare_operator);
  528. RD_BIND(Variant::BOOL, RDPipelineDepthStencilState, enable_depth_range);
  529. RD_BIND(Variant::FLOAT, RDPipelineDepthStencilState, depth_range_min);
  530. RD_BIND(Variant::FLOAT, RDPipelineDepthStencilState, depth_range_max);
  531. RD_BIND(Variant::BOOL, RDPipelineDepthStencilState, enable_stencil);
  532. RD_BIND_SUB(Variant::INT, RDPipelineDepthStencilState, front_op, fail);
  533. RD_BIND_SUB(Variant::INT, RDPipelineDepthStencilState, front_op, pass);
  534. RD_BIND_SUB(Variant::INT, RDPipelineDepthStencilState, front_op, depth_fail);
  535. RD_BIND_SUB(Variant::INT, RDPipelineDepthStencilState, front_op, compare);
  536. RD_BIND_SUB(Variant::INT, RDPipelineDepthStencilState, front_op, compare_mask);
  537. RD_BIND_SUB(Variant::INT, RDPipelineDepthStencilState, front_op, write_mask);
  538. RD_BIND_SUB(Variant::INT, RDPipelineDepthStencilState, front_op, reference);
  539. RD_BIND_SUB(Variant::INT, RDPipelineDepthStencilState, back_op, fail);
  540. RD_BIND_SUB(Variant::INT, RDPipelineDepthStencilState, back_op, pass);
  541. RD_BIND_SUB(Variant::INT, RDPipelineDepthStencilState, back_op, depth_fail);
  542. RD_BIND_SUB(Variant::INT, RDPipelineDepthStencilState, back_op, compare);
  543. RD_BIND_SUB(Variant::INT, RDPipelineDepthStencilState, back_op, compare_mask);
  544. RD_BIND_SUB(Variant::INT, RDPipelineDepthStencilState, back_op, write_mask);
  545. RD_BIND_SUB(Variant::INT, RDPipelineDepthStencilState, back_op, reference);
  546. }
  547. };
  548. class RDPipelineColorBlendStateAttachment : public RefCounted {
  549. GDCLASS(RDPipelineColorBlendStateAttachment, RefCounted)
  550. friend class RenderingDevice;
  551. RD::PipelineColorBlendState::Attachment base;
  552. public:
  553. RD_SETGET(bool, enable_blend)
  554. RD_SETGET(RD::BlendFactor, src_color_blend_factor)
  555. RD_SETGET(RD::BlendFactor, dst_color_blend_factor)
  556. RD_SETGET(RD::BlendOperation, color_blend_op)
  557. RD_SETGET(RD::BlendFactor, src_alpha_blend_factor)
  558. RD_SETGET(RD::BlendFactor, dst_alpha_blend_factor)
  559. RD_SETGET(RD::BlendOperation, alpha_blend_op)
  560. RD_SETGET(bool, write_r)
  561. RD_SETGET(bool, write_g)
  562. RD_SETGET(bool, write_b)
  563. RD_SETGET(bool, write_a)
  564. void set_as_mix() {
  565. base = RD::PipelineColorBlendState::Attachment();
  566. base.enable_blend = true;
  567. base.src_color_blend_factor = RD::BLEND_FACTOR_SRC_ALPHA;
  568. base.dst_color_blend_factor = RD::BLEND_FACTOR_ONE_MINUS_SRC_ALPHA;
  569. base.src_alpha_blend_factor = RD::BLEND_FACTOR_SRC_ALPHA;
  570. base.dst_alpha_blend_factor = RD::BLEND_FACTOR_ONE_MINUS_SRC_ALPHA;
  571. }
  572. protected:
  573. static void _bind_methods() {
  574. ClassDB::bind_method(D_METHOD("set_as_mix"), &RDPipelineColorBlendStateAttachment::set_as_mix);
  575. RD_BIND(Variant::BOOL, RDPipelineColorBlendStateAttachment, enable_blend);
  576. RD_BIND(Variant::INT, RDPipelineColorBlendStateAttachment, src_color_blend_factor);
  577. RD_BIND(Variant::INT, RDPipelineColorBlendStateAttachment, dst_color_blend_factor);
  578. RD_BIND(Variant::INT, RDPipelineColorBlendStateAttachment, color_blend_op);
  579. RD_BIND(Variant::INT, RDPipelineColorBlendStateAttachment, src_alpha_blend_factor);
  580. RD_BIND(Variant::INT, RDPipelineColorBlendStateAttachment, dst_alpha_blend_factor);
  581. RD_BIND(Variant::INT, RDPipelineColorBlendStateAttachment, alpha_blend_op);
  582. RD_BIND(Variant::BOOL, RDPipelineColorBlendStateAttachment, write_r);
  583. RD_BIND(Variant::BOOL, RDPipelineColorBlendStateAttachment, write_g);
  584. RD_BIND(Variant::BOOL, RDPipelineColorBlendStateAttachment, write_b);
  585. RD_BIND(Variant::BOOL, RDPipelineColorBlendStateAttachment, write_a);
  586. }
  587. };
  588. class RDPipelineColorBlendState : public RefCounted {
  589. GDCLASS(RDPipelineColorBlendState, RefCounted)
  590. friend class RenderingDevice;
  591. RD::PipelineColorBlendState base;
  592. TypedArray<RDPipelineColorBlendStateAttachment> attachments;
  593. public:
  594. RD_SETGET(bool, enable_logic_op)
  595. RD_SETGET(RD::LogicOperation, logic_op)
  596. RD_SETGET(Color, blend_constant)
  597. void set_attachments(const TypedArray<RDPipelineColorBlendStateAttachment> &p_attachments) {
  598. attachments = p_attachments;
  599. }
  600. TypedArray<RDPipelineColorBlendStateAttachment> get_attachments() const {
  601. return attachments;
  602. }
  603. protected:
  604. static void _bind_methods() {
  605. RD_BIND(Variant::BOOL, RDPipelineColorBlendState, enable_logic_op);
  606. RD_BIND(Variant::INT, RDPipelineColorBlendState, logic_op);
  607. RD_BIND(Variant::COLOR, RDPipelineColorBlendState, blend_constant);
  608. ClassDB::bind_method(D_METHOD("set_attachments", "attachments"), &RDPipelineColorBlendState::set_attachments);
  609. ClassDB::bind_method(D_METHOD("get_attachments"), &RDPipelineColorBlendState::get_attachments);
  610. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "attachments", PROPERTY_HINT_ARRAY_TYPE, "RDPipelineColorBlendStateAttachment"), "set_attachments", "get_attachments");
  611. }
  612. };
  613. #endif // RENDERING_DEVICE_BINDS_H