texture_storage.cpp 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008
  1. /**************************************************************************/
  2. /* texture_storage.cpp */
  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. #include "texture_storage.h"
  31. #include "../effects/copy_effects.h"
  32. #include "../framebuffer_cache_rd.h"
  33. #include "material_storage.h"
  34. #include "servers/rendering/renderer_rd/renderer_scene_render_rd.h"
  35. using namespace RendererRD;
  36. ///////////////////////////////////////////////////////////////////////////
  37. // TextureStorage::CanvasTexture
  38. void TextureStorage::CanvasTexture::clear_sets() {
  39. if (cleared_cache) {
  40. return;
  41. }
  42. for (int i = 1; i < RS::CANVAS_ITEM_TEXTURE_FILTER_MAX; i++) {
  43. for (int j = 1; j < RS::CANVAS_ITEM_TEXTURE_REPEAT_MAX; j++) {
  44. for (int k = 0; k < 2; k++) {
  45. if (RD::get_singleton()->uniform_set_is_valid(uniform_sets[i][j][k])) {
  46. RD::get_singleton()->free(uniform_sets[i][j][k]);
  47. uniform_sets[i][j][k] = RID();
  48. }
  49. }
  50. }
  51. }
  52. cleared_cache = true;
  53. }
  54. TextureStorage::CanvasTexture::~CanvasTexture() {
  55. clear_sets();
  56. }
  57. ///////////////////////////////////////////////////////////////////////////
  58. // TextureStorage::Texture
  59. void TextureStorage::Texture::cleanup() {
  60. if (RD::get_singleton()->texture_is_valid(rd_texture_srgb)) {
  61. //erase this first, as it's a dependency of the one below
  62. RD::get_singleton()->free(rd_texture_srgb);
  63. }
  64. if (RD::get_singleton()->texture_is_valid(rd_texture)) {
  65. RD::get_singleton()->free(rd_texture);
  66. }
  67. if (canvas_texture) {
  68. memdelete(canvas_texture);
  69. }
  70. }
  71. ///////////////////////////////////////////////////////////////////////////
  72. // TextureStorage
  73. TextureStorage *TextureStorage::singleton = nullptr;
  74. TextureStorage *TextureStorage::get_singleton() {
  75. return singleton;
  76. }
  77. TextureStorage::TextureStorage() {
  78. singleton = this;
  79. { //create default textures
  80. RD::TextureFormat tformat;
  81. tformat.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  82. tformat.width = 4;
  83. tformat.height = 4;
  84. tformat.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT;
  85. tformat.texture_type = RD::TEXTURE_TYPE_2D;
  86. Vector<uint8_t> pv;
  87. pv.resize(16 * 4);
  88. for (int i = 0; i < 16; i++) {
  89. // Opaque white.
  90. pv.set(i * 4 + 0, 255);
  91. pv.set(i * 4 + 1, 255);
  92. pv.set(i * 4 + 2, 255);
  93. pv.set(i * 4 + 3, 255);
  94. }
  95. {
  96. Vector<Vector<uint8_t>> vpv;
  97. vpv.push_back(pv);
  98. default_rd_textures[DEFAULT_RD_TEXTURE_WHITE] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  99. }
  100. for (int i = 0; i < 16; i++) {
  101. // Opaque black.
  102. pv.set(i * 4 + 0, 0);
  103. pv.set(i * 4 + 1, 0);
  104. pv.set(i * 4 + 2, 0);
  105. pv.set(i * 4 + 3, 255);
  106. }
  107. {
  108. Vector<Vector<uint8_t>> vpv;
  109. vpv.push_back(pv);
  110. default_rd_textures[DEFAULT_RD_TEXTURE_BLACK] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  111. }
  112. for (int i = 0; i < 16; i++) {
  113. // Transparent black.
  114. pv.set(i * 4 + 0, 0);
  115. pv.set(i * 4 + 1, 0);
  116. pv.set(i * 4 + 2, 0);
  117. pv.set(i * 4 + 3, 0);
  118. }
  119. {
  120. Vector<Vector<uint8_t>> vpv;
  121. vpv.push_back(pv);
  122. default_rd_textures[DEFAULT_RD_TEXTURE_TRANSPARENT] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  123. }
  124. for (int i = 0; i < 16; i++) {
  125. // Opaque normal map "flat" color.
  126. pv.set(i * 4 + 0, 128);
  127. pv.set(i * 4 + 1, 128);
  128. pv.set(i * 4 + 2, 255);
  129. pv.set(i * 4 + 3, 255);
  130. }
  131. {
  132. Vector<Vector<uint8_t>> vpv;
  133. vpv.push_back(pv);
  134. default_rd_textures[DEFAULT_RD_TEXTURE_NORMAL] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  135. }
  136. for (int i = 0; i < 16; i++) {
  137. // Opaque flowmap "flat" color.
  138. pv.set(i * 4 + 0, 255);
  139. pv.set(i * 4 + 1, 128);
  140. pv.set(i * 4 + 2, 255);
  141. pv.set(i * 4 + 3, 255);
  142. }
  143. {
  144. Vector<Vector<uint8_t>> vpv;
  145. vpv.push_back(pv);
  146. default_rd_textures[DEFAULT_RD_TEXTURE_ANISO] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  147. }
  148. {
  149. RD::TextureFormat tf;
  150. tf.format = RD::DATA_FORMAT_D16_UNORM;
  151. tf.width = 4;
  152. tf.height = 4;
  153. tf.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT | RD::TEXTURE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT;
  154. tf.texture_type = RD::TEXTURE_TYPE_2D;
  155. Vector<uint8_t> sv;
  156. sv.resize(16 * 2);
  157. uint16_t *ptr = (uint16_t *)sv.ptrw();
  158. for (int i = 0; i < 16; i++) {
  159. ptr[i] = Math::make_half_float(1.0f);
  160. }
  161. Vector<Vector<uint8_t>> vpv;
  162. vpv.push_back(sv);
  163. default_rd_textures[DEFAULT_RD_TEXTURE_DEPTH] = RD::get_singleton()->texture_create(tf, RD::TextureView(), vpv);
  164. }
  165. for (int i = 0; i < 16; i++) {
  166. pv.set(i * 4 + 0, 0);
  167. pv.set(i * 4 + 1, 0);
  168. pv.set(i * 4 + 2, 0);
  169. pv.set(i * 4 + 3, 0);
  170. }
  171. default_rd_textures[DEFAULT_RD_TEXTURE_MULTIMESH_BUFFER] = RD::get_singleton()->texture_buffer_create(16, RD::DATA_FORMAT_R8G8B8A8_UNORM, pv);
  172. for (int i = 0; i < 16; i++) {
  173. pv.set(i * 4 + 0, 0);
  174. pv.set(i * 4 + 1, 0);
  175. pv.set(i * 4 + 2, 0);
  176. pv.set(i * 4 + 3, 0);
  177. }
  178. {
  179. tformat.format = RD::DATA_FORMAT_R8G8B8A8_UINT;
  180. Vector<Vector<uint8_t>> vpv;
  181. vpv.push_back(pv);
  182. default_rd_textures[DEFAULT_RD_TEXTURE_2D_UINT] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  183. }
  184. }
  185. { //create default black cubemap array
  186. RD::TextureFormat tformat;
  187. tformat.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  188. tformat.width = 4;
  189. tformat.height = 4;
  190. tformat.array_layers = 6;
  191. tformat.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT;
  192. tformat.texture_type = RD::TEXTURE_TYPE_CUBE_ARRAY;
  193. Vector<uint8_t> pv;
  194. pv.resize(16 * 4);
  195. for (int i = 0; i < 16; i++) {
  196. pv.set(i * 4 + 0, 0);
  197. pv.set(i * 4 + 1, 0);
  198. pv.set(i * 4 + 2, 0);
  199. pv.set(i * 4 + 3, 0);
  200. }
  201. {
  202. Vector<Vector<uint8_t>> vpv;
  203. for (int i = 0; i < 6; i++) {
  204. vpv.push_back(pv);
  205. }
  206. default_rd_textures[DEFAULT_RD_TEXTURE_CUBEMAP_ARRAY_BLACK] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  207. }
  208. }
  209. { //create default white cubemap array
  210. RD::TextureFormat tformat;
  211. tformat.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  212. tformat.width = 4;
  213. tformat.height = 4;
  214. tformat.array_layers = 6;
  215. tformat.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT;
  216. tformat.texture_type = RD::TEXTURE_TYPE_CUBE_ARRAY;
  217. Vector<uint8_t> pv;
  218. pv.resize(16 * 4);
  219. for (int i = 0; i < 16; i++) {
  220. pv.set(i * 4 + 0, 255);
  221. pv.set(i * 4 + 1, 255);
  222. pv.set(i * 4 + 2, 255);
  223. pv.set(i * 4 + 3, 255);
  224. }
  225. {
  226. Vector<Vector<uint8_t>> vpv;
  227. for (int i = 0; i < 6; i++) {
  228. vpv.push_back(pv);
  229. }
  230. default_rd_textures[DEFAULT_RD_TEXTURE_CUBEMAP_ARRAY_WHITE] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  231. }
  232. }
  233. { //create default black cubemap
  234. RD::TextureFormat tformat;
  235. tformat.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  236. tformat.width = 4;
  237. tformat.height = 4;
  238. tformat.array_layers = 6;
  239. tformat.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT;
  240. tformat.texture_type = RD::TEXTURE_TYPE_CUBE;
  241. Vector<uint8_t> pv;
  242. pv.resize(16 * 4);
  243. for (int i = 0; i < 16; i++) {
  244. pv.set(i * 4 + 0, 0);
  245. pv.set(i * 4 + 1, 0);
  246. pv.set(i * 4 + 2, 0);
  247. pv.set(i * 4 + 3, 0);
  248. }
  249. {
  250. Vector<Vector<uint8_t>> vpv;
  251. for (int i = 0; i < 6; i++) {
  252. vpv.push_back(pv);
  253. }
  254. default_rd_textures[DEFAULT_RD_TEXTURE_CUBEMAP_BLACK] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  255. }
  256. }
  257. { //create default white cubemap
  258. RD::TextureFormat tformat;
  259. tformat.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  260. tformat.width = 4;
  261. tformat.height = 4;
  262. tformat.array_layers = 6;
  263. tformat.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT;
  264. tformat.texture_type = RD::TEXTURE_TYPE_CUBE;
  265. Vector<uint8_t> pv;
  266. pv.resize(16 * 4);
  267. for (int i = 0; i < 16; i++) {
  268. pv.set(i * 4 + 0, 255);
  269. pv.set(i * 4 + 1, 255);
  270. pv.set(i * 4 + 2, 255);
  271. pv.set(i * 4 + 3, 255);
  272. }
  273. {
  274. Vector<Vector<uint8_t>> vpv;
  275. for (int i = 0; i < 6; i++) {
  276. vpv.push_back(pv);
  277. }
  278. default_rd_textures[DEFAULT_RD_TEXTURE_CUBEMAP_WHITE] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  279. }
  280. }
  281. { //create default 3D
  282. RD::TextureFormat tformat;
  283. tformat.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  284. tformat.width = 4;
  285. tformat.height = 4;
  286. tformat.depth = 4;
  287. tformat.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT;
  288. tformat.texture_type = RD::TEXTURE_TYPE_3D;
  289. Vector<uint8_t> pv;
  290. pv.resize(64 * 4);
  291. for (int i = 0; i < 64; i++) {
  292. pv.set(i * 4 + 0, 0);
  293. pv.set(i * 4 + 1, 0);
  294. pv.set(i * 4 + 2, 0);
  295. pv.set(i * 4 + 3, 0);
  296. }
  297. {
  298. Vector<Vector<uint8_t>> vpv;
  299. vpv.push_back(pv);
  300. default_rd_textures[DEFAULT_RD_TEXTURE_3D_BLACK] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  301. }
  302. for (int i = 0; i < 64; i++) {
  303. pv.set(i * 4 + 0, 255);
  304. pv.set(i * 4 + 1, 255);
  305. pv.set(i * 4 + 2, 255);
  306. pv.set(i * 4 + 3, 255);
  307. }
  308. {
  309. Vector<Vector<uint8_t>> vpv;
  310. vpv.push_back(pv);
  311. default_rd_textures[DEFAULT_RD_TEXTURE_3D_WHITE] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  312. }
  313. }
  314. { //create default array white
  315. RD::TextureFormat tformat;
  316. tformat.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  317. tformat.width = 4;
  318. tformat.height = 4;
  319. tformat.array_layers = 1;
  320. tformat.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT;
  321. tformat.texture_type = RD::TEXTURE_TYPE_2D_ARRAY;
  322. Vector<uint8_t> pv;
  323. pv.resize(16 * 4);
  324. for (int i = 0; i < 16; i++) {
  325. pv.set(i * 4 + 0, 255);
  326. pv.set(i * 4 + 1, 255);
  327. pv.set(i * 4 + 2, 255);
  328. pv.set(i * 4 + 3, 255);
  329. }
  330. {
  331. Vector<Vector<uint8_t>> vpv;
  332. vpv.push_back(pv);
  333. default_rd_textures[DEFAULT_RD_TEXTURE_2D_ARRAY_WHITE] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  334. }
  335. }
  336. { //create default array black
  337. RD::TextureFormat tformat;
  338. tformat.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  339. tformat.width = 4;
  340. tformat.height = 4;
  341. tformat.array_layers = 1;
  342. tformat.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT;
  343. tformat.texture_type = RD::TEXTURE_TYPE_2D_ARRAY;
  344. Vector<uint8_t> pv;
  345. pv.resize(16 * 4);
  346. for (int i = 0; i < 16; i++) {
  347. pv.set(i * 4 + 0, 0);
  348. pv.set(i * 4 + 1, 0);
  349. pv.set(i * 4 + 2, 0);
  350. pv.set(i * 4 + 3, 0);
  351. }
  352. {
  353. Vector<Vector<uint8_t>> vpv;
  354. vpv.push_back(pv);
  355. default_rd_textures[DEFAULT_RD_TEXTURE_2D_ARRAY_BLACK] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  356. }
  357. }
  358. { //create default array normal
  359. RD::TextureFormat tformat;
  360. tformat.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  361. tformat.width = 4;
  362. tformat.height = 4;
  363. tformat.array_layers = 1;
  364. tformat.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT;
  365. tformat.texture_type = RD::TEXTURE_TYPE_2D_ARRAY;
  366. Vector<uint8_t> pv;
  367. pv.resize(16 * 4);
  368. for (int i = 0; i < 16; i++) {
  369. pv.set(i * 4 + 0, 128);
  370. pv.set(i * 4 + 1, 128);
  371. pv.set(i * 4 + 2, 255);
  372. pv.set(i * 4 + 3, 255);
  373. }
  374. {
  375. Vector<Vector<uint8_t>> vpv;
  376. vpv.push_back(pv);
  377. default_rd_textures[DEFAULT_RD_TEXTURE_2D_ARRAY_NORMAL] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  378. }
  379. }
  380. { //create default array depth
  381. RD::TextureFormat tformat;
  382. tformat.format = RD::DATA_FORMAT_D16_UNORM;
  383. tformat.width = 4;
  384. tformat.height = 4;
  385. tformat.array_layers = 1;
  386. tformat.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT | RD::TEXTURE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT;
  387. tformat.texture_type = RD::TEXTURE_TYPE_2D_ARRAY;
  388. Vector<uint8_t> sv;
  389. sv.resize(16 * 2);
  390. uint16_t *ptr = (uint16_t *)sv.ptrw();
  391. for (int i = 0; i < 16; i++) {
  392. ptr[i] = Math::make_half_float(1.0f);
  393. }
  394. {
  395. Vector<Vector<uint8_t>> vsv;
  396. vsv.push_back(sv);
  397. default_rd_textures[DEFAULT_RD_TEXTURE_2D_ARRAY_DEPTH] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vsv);
  398. }
  399. }
  400. { // default atlas texture
  401. RD::TextureFormat tformat;
  402. tformat.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  403. tformat.width = 4;
  404. tformat.height = 4;
  405. tformat.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT;
  406. tformat.texture_type = RD::TEXTURE_TYPE_2D;
  407. Vector<uint8_t> pv;
  408. pv.resize(16 * 4);
  409. for (int i = 0; i < 16; i++) {
  410. pv.set(i * 4 + 0, 0);
  411. pv.set(i * 4 + 1, 0);
  412. pv.set(i * 4 + 2, 0);
  413. pv.set(i * 4 + 3, 255);
  414. }
  415. {
  416. Vector<Vector<uint8_t>> vpv;
  417. vpv.push_back(pv);
  418. decal_atlas.texture = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  419. decal_atlas.texture_srgb = decal_atlas.texture;
  420. }
  421. }
  422. { //create default VRS
  423. RD::TextureFormat tformat;
  424. tformat.format = RD::DATA_FORMAT_R8_UINT;
  425. tformat.width = 4;
  426. tformat.height = 4;
  427. tformat.usage_bits = RD::TEXTURE_USAGE_COLOR_ATTACHMENT_BIT | RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_STORAGE_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT | RD::TEXTURE_USAGE_VRS_ATTACHMENT_BIT;
  428. tformat.texture_type = RD::TEXTURE_TYPE_2D;
  429. if (!RD::get_singleton()->has_feature(RD::SUPPORTS_ATTACHMENT_VRS)) {
  430. tformat.usage_bits = RD::TEXTURE_USAGE_COLOR_ATTACHMENT_BIT | RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT;
  431. }
  432. Vector<uint8_t> pv;
  433. pv.resize(4 * 4);
  434. for (int i = 0; i < 4 * 4; i++) {
  435. pv.set(i, 0);
  436. }
  437. {
  438. Vector<Vector<uint8_t>> vpv;
  439. vpv.push_back(pv);
  440. default_rd_textures[DEFAULT_RD_TEXTURE_VRS] = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  441. }
  442. }
  443. {
  444. Vector<String> sdf_modes;
  445. sdf_modes.push_back("\n#define MODE_LOAD\n");
  446. sdf_modes.push_back("\n#define MODE_LOAD_SHRINK\n");
  447. sdf_modes.push_back("\n#define MODE_PROCESS\n");
  448. sdf_modes.push_back("\n#define MODE_PROCESS_OPTIMIZED\n");
  449. sdf_modes.push_back("\n#define MODE_STORE\n");
  450. sdf_modes.push_back("\n#define MODE_STORE_SHRINK\n");
  451. rt_sdf.shader.initialize(sdf_modes);
  452. rt_sdf.shader_version = rt_sdf.shader.version_create();
  453. for (int i = 0; i < RenderTargetSDF::SHADER_MAX; i++) {
  454. rt_sdf.pipelines[i] = RD::get_singleton()->compute_pipeline_create(rt_sdf.shader.version_get_shader(rt_sdf.shader_version, i));
  455. }
  456. }
  457. }
  458. TextureStorage::~TextureStorage() {
  459. rt_sdf.shader.version_free(rt_sdf.shader_version);
  460. free_decal_data();
  461. if (decal_atlas.textures.size()) {
  462. ERR_PRINT("Decal Atlas: " + itos(decal_atlas.textures.size()) + " textures were not removed from the atlas.");
  463. }
  464. if (decal_atlas.texture.is_valid()) {
  465. RD::get_singleton()->free(decal_atlas.texture);
  466. }
  467. //def textures
  468. for (int i = 0; i < DEFAULT_RD_TEXTURE_MAX; i++) {
  469. if (default_rd_textures[i].is_valid()) {
  470. RD::get_singleton()->free(default_rd_textures[i]);
  471. }
  472. }
  473. singleton = nullptr;
  474. }
  475. bool TextureStorage::free(RID p_rid) {
  476. if (owns_texture(p_rid)) {
  477. texture_free(p_rid);
  478. return true;
  479. } else if (owns_canvas_texture(p_rid)) {
  480. canvas_texture_free(p_rid);
  481. return true;
  482. } else if (owns_decal(p_rid)) {
  483. decal_free(p_rid);
  484. return true;
  485. } else if (owns_decal_instance(p_rid)) {
  486. decal_instance_free(p_rid);
  487. return true;
  488. } else if (owns_render_target(p_rid)) {
  489. render_target_free(p_rid);
  490. return true;
  491. }
  492. return false;
  493. }
  494. bool TextureStorage::can_create_resources_async() const {
  495. return true;
  496. }
  497. /* Canvas Texture API */
  498. RID TextureStorage::canvas_texture_allocate() {
  499. return canvas_texture_owner.allocate_rid();
  500. }
  501. void TextureStorage::canvas_texture_initialize(RID p_rid) {
  502. canvas_texture_owner.initialize_rid(p_rid);
  503. }
  504. void TextureStorage::canvas_texture_free(RID p_rid) {
  505. canvas_texture_owner.free(p_rid);
  506. }
  507. void TextureStorage::canvas_texture_set_channel(RID p_canvas_texture, RS::CanvasTextureChannel p_channel, RID p_texture) {
  508. CanvasTexture *ct = canvas_texture_owner.get_or_null(p_canvas_texture);
  509. ERR_FAIL_NULL(ct);
  510. switch (p_channel) {
  511. case RS::CANVAS_TEXTURE_CHANNEL_DIFFUSE: {
  512. ct->diffuse = p_texture;
  513. } break;
  514. case RS::CANVAS_TEXTURE_CHANNEL_NORMAL: {
  515. ct->normal_map = p_texture;
  516. } break;
  517. case RS::CANVAS_TEXTURE_CHANNEL_SPECULAR: {
  518. ct->specular = p_texture;
  519. } break;
  520. }
  521. ct->clear_sets();
  522. }
  523. void TextureStorage::canvas_texture_set_shading_parameters(RID p_canvas_texture, const Color &p_specular_color, float p_shininess) {
  524. CanvasTexture *ct = canvas_texture_owner.get_or_null(p_canvas_texture);
  525. ERR_FAIL_NULL(ct);
  526. ct->specular_color.r = p_specular_color.r;
  527. ct->specular_color.g = p_specular_color.g;
  528. ct->specular_color.b = p_specular_color.b;
  529. ct->specular_color.a = p_shininess;
  530. ct->clear_sets();
  531. }
  532. void TextureStorage::canvas_texture_set_texture_filter(RID p_canvas_texture, RS::CanvasItemTextureFilter p_filter) {
  533. CanvasTexture *ct = canvas_texture_owner.get_or_null(p_canvas_texture);
  534. ERR_FAIL_NULL(ct);
  535. ct->texture_filter = p_filter;
  536. ct->clear_sets();
  537. }
  538. void TextureStorage::canvas_texture_set_texture_repeat(RID p_canvas_texture, RS::CanvasItemTextureRepeat p_repeat) {
  539. CanvasTexture *ct = canvas_texture_owner.get_or_null(p_canvas_texture);
  540. ERR_FAIL_NULL(ct);
  541. ct->texture_repeat = p_repeat;
  542. ct->clear_sets();
  543. }
  544. bool TextureStorage::canvas_texture_get_uniform_set(RID p_texture, RS::CanvasItemTextureFilter p_base_filter, RS::CanvasItemTextureRepeat p_base_repeat, RID p_base_shader, int p_base_set, bool p_use_srgb, RID &r_uniform_set, Size2i &r_size, Color &r_specular_shininess, bool &r_use_normal, bool &r_use_specular, bool p_texture_is_data) {
  545. MaterialStorage *material_storage = MaterialStorage::get_singleton();
  546. CanvasTexture *ct = nullptr;
  547. Texture *t = get_texture(p_texture);
  548. // TODO once we have our texture storage split off we'll look into moving this code into canvas_texture
  549. if (t) {
  550. //regular texture
  551. if (!t->canvas_texture) {
  552. t->canvas_texture = memnew(CanvasTexture);
  553. t->canvas_texture->diffuse = p_texture;
  554. }
  555. ct = t->canvas_texture;
  556. if (t->render_target) {
  557. t->render_target->was_used = true;
  558. }
  559. } else {
  560. ct = canvas_texture_owner.get_or_null(p_texture);
  561. }
  562. if (!ct) {
  563. return false; //invalid texture RID
  564. }
  565. RS::CanvasItemTextureFilter filter = ct->texture_filter != RS::CANVAS_ITEM_TEXTURE_FILTER_DEFAULT ? ct->texture_filter : p_base_filter;
  566. ERR_FAIL_COND_V(filter == RS::CANVAS_ITEM_TEXTURE_FILTER_DEFAULT, false);
  567. RS::CanvasItemTextureRepeat repeat = ct->texture_repeat != RS::CANVAS_ITEM_TEXTURE_REPEAT_DEFAULT ? ct->texture_repeat : p_base_repeat;
  568. ERR_FAIL_COND_V(repeat == RS::CANVAS_ITEM_TEXTURE_REPEAT_DEFAULT, false);
  569. RID uniform_set = ct->uniform_sets[filter][repeat][int(p_use_srgb)];
  570. if (!RD::get_singleton()->uniform_set_is_valid(uniform_set)) {
  571. //create and update
  572. Vector<RD::Uniform> uniforms;
  573. { //diffuse
  574. RD::Uniform u;
  575. u.uniform_type = RD::UNIFORM_TYPE_TEXTURE;
  576. u.binding = 0;
  577. t = get_texture(ct->diffuse);
  578. if (!t) {
  579. u.append_id(texture_rd_get_default(DEFAULT_RD_TEXTURE_WHITE));
  580. ct->size_cache = Size2i(1, 1);
  581. } else {
  582. u.append_id(t->rd_texture_srgb.is_valid() && p_use_srgb && !p_texture_is_data ? t->rd_texture_srgb : t->rd_texture);
  583. ct->size_cache = Size2i(t->width_2d, t->height_2d);
  584. if (t->render_target) {
  585. t->render_target->was_used = true;
  586. }
  587. }
  588. uniforms.push_back(u);
  589. }
  590. { //normal
  591. RD::Uniform u;
  592. u.uniform_type = RD::UNIFORM_TYPE_TEXTURE;
  593. u.binding = 1;
  594. t = get_texture(ct->normal_map);
  595. if (!t) {
  596. u.append_id(texture_rd_get_default(DEFAULT_RD_TEXTURE_NORMAL));
  597. ct->use_normal_cache = false;
  598. } else {
  599. u.append_id(t->rd_texture);
  600. ct->use_normal_cache = true;
  601. if (t->render_target) {
  602. t->render_target->was_used = true;
  603. }
  604. }
  605. uniforms.push_back(u);
  606. }
  607. { //specular
  608. RD::Uniform u;
  609. u.uniform_type = RD::UNIFORM_TYPE_TEXTURE;
  610. u.binding = 2;
  611. t = get_texture(ct->specular);
  612. if (!t) {
  613. u.append_id(texture_rd_get_default(DEFAULT_RD_TEXTURE_WHITE));
  614. ct->use_specular_cache = false;
  615. } else {
  616. u.append_id(t->rd_texture);
  617. ct->use_specular_cache = true;
  618. if (t->render_target) {
  619. t->render_target->was_used = true;
  620. }
  621. }
  622. uniforms.push_back(u);
  623. }
  624. { //sampler
  625. RD::Uniform u;
  626. u.uniform_type = RD::UNIFORM_TYPE_SAMPLER;
  627. u.binding = 3;
  628. u.append_id(material_storage->sampler_rd_get_default(filter, repeat));
  629. uniforms.push_back(u);
  630. }
  631. uniform_set = RD::get_singleton()->uniform_set_create(uniforms, p_base_shader, p_base_set);
  632. ct->uniform_sets[filter][repeat][int(p_use_srgb)] = uniform_set;
  633. ct->cleared_cache = false;
  634. }
  635. r_uniform_set = uniform_set;
  636. r_size = ct->size_cache;
  637. r_specular_shininess = ct->specular_color;
  638. r_use_normal = ct->use_normal_cache;
  639. r_use_specular = ct->use_specular_cache;
  640. return true;
  641. }
  642. /* Texture API */
  643. RID TextureStorage::texture_allocate() {
  644. return texture_owner.allocate_rid();
  645. }
  646. void TextureStorage::texture_free(RID p_texture) {
  647. Texture *t = texture_owner.get_or_null(p_texture);
  648. ERR_FAIL_NULL(t);
  649. ERR_FAIL_COND(t->is_render_target);
  650. t->cleanup();
  651. if (t->is_proxy && t->proxy_to.is_valid()) {
  652. Texture *proxy_to = texture_owner.get_or_null(t->proxy_to);
  653. if (proxy_to) {
  654. proxy_to->proxies.erase(p_texture);
  655. }
  656. }
  657. decal_atlas_remove_texture(p_texture);
  658. for (int i = 0; i < t->proxies.size(); i++) {
  659. Texture *p = texture_owner.get_or_null(t->proxies[i]);
  660. ERR_CONTINUE(!p);
  661. p->proxy_to = RID();
  662. p->rd_texture = RID();
  663. p->rd_texture_srgb = RID();
  664. }
  665. texture_owner.free(p_texture);
  666. }
  667. void TextureStorage::texture_2d_initialize(RID p_texture, const Ref<Image> &p_image) {
  668. ERR_FAIL_COND(p_image.is_null());
  669. TextureToRDFormat ret_format;
  670. Ref<Image> image = _validate_texture_format(p_image, ret_format);
  671. Texture texture;
  672. texture.type = TextureStorage::TYPE_2D;
  673. texture.width = p_image->get_width();
  674. texture.height = p_image->get_height();
  675. texture.layers = 1;
  676. texture.mipmaps = p_image->get_mipmap_count() + 1;
  677. texture.depth = 1;
  678. texture.format = p_image->get_format();
  679. texture.validated_format = image->get_format();
  680. texture.rd_type = RD::TEXTURE_TYPE_2D;
  681. texture.rd_format = ret_format.format;
  682. texture.rd_format_srgb = ret_format.format_srgb;
  683. RD::TextureFormat rd_format;
  684. RD::TextureView rd_view;
  685. { //attempt register
  686. rd_format.format = texture.rd_format;
  687. rd_format.width = texture.width;
  688. rd_format.height = texture.height;
  689. rd_format.depth = 1;
  690. rd_format.array_layers = 1;
  691. rd_format.mipmaps = texture.mipmaps;
  692. rd_format.texture_type = texture.rd_type;
  693. rd_format.samples = RD::TEXTURE_SAMPLES_1;
  694. rd_format.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT | RD::TEXTURE_USAGE_CAN_COPY_FROM_BIT;
  695. if (texture.rd_format_srgb != RD::DATA_FORMAT_MAX) {
  696. rd_format.shareable_formats.push_back(texture.rd_format);
  697. rd_format.shareable_formats.push_back(texture.rd_format_srgb);
  698. }
  699. }
  700. {
  701. rd_view.swizzle_r = ret_format.swizzle_r;
  702. rd_view.swizzle_g = ret_format.swizzle_g;
  703. rd_view.swizzle_b = ret_format.swizzle_b;
  704. rd_view.swizzle_a = ret_format.swizzle_a;
  705. }
  706. Vector<uint8_t> data = image->get_data(); //use image data
  707. Vector<Vector<uint8_t>> data_slices;
  708. data_slices.push_back(data);
  709. texture.rd_texture = RD::get_singleton()->texture_create(rd_format, rd_view, data_slices);
  710. ERR_FAIL_COND(texture.rd_texture.is_null());
  711. if (texture.rd_format_srgb != RD::DATA_FORMAT_MAX) {
  712. rd_view.format_override = texture.rd_format_srgb;
  713. texture.rd_texture_srgb = RD::get_singleton()->texture_create_shared(rd_view, texture.rd_texture);
  714. if (texture.rd_texture_srgb.is_null()) {
  715. RD::get_singleton()->free(texture.rd_texture);
  716. ERR_FAIL_COND(texture.rd_texture_srgb.is_null());
  717. }
  718. }
  719. //used for 2D, overridable
  720. texture.width_2d = texture.width;
  721. texture.height_2d = texture.height;
  722. texture.is_render_target = false;
  723. texture.rd_view = rd_view;
  724. texture.is_proxy = false;
  725. texture_owner.initialize_rid(p_texture, texture);
  726. }
  727. void TextureStorage::texture_2d_layered_initialize(RID p_texture, const Vector<Ref<Image>> &p_layers, RS::TextureLayeredType p_layered_type) {
  728. ERR_FAIL_COND(p_layers.is_empty());
  729. ERR_FAIL_COND(p_layered_type == RS::TEXTURE_LAYERED_CUBEMAP && p_layers.size() != 6);
  730. ERR_FAIL_COND(p_layered_type == RS::TEXTURE_LAYERED_CUBEMAP_ARRAY && (p_layers.size() < 6 || (p_layers.size() % 6) != 0));
  731. TextureToRDFormat ret_format;
  732. Vector<Ref<Image>> images;
  733. {
  734. int valid_width = 0;
  735. int valid_height = 0;
  736. bool valid_mipmaps = false;
  737. Image::Format valid_format = Image::FORMAT_MAX;
  738. for (int i = 0; i < p_layers.size(); i++) {
  739. ERR_FAIL_COND(p_layers[i]->is_empty());
  740. if (i == 0) {
  741. valid_width = p_layers[i]->get_width();
  742. valid_height = p_layers[i]->get_height();
  743. valid_format = p_layers[i]->get_format();
  744. valid_mipmaps = p_layers[i]->has_mipmaps();
  745. } else {
  746. ERR_FAIL_COND(p_layers[i]->get_width() != valid_width);
  747. ERR_FAIL_COND(p_layers[i]->get_height() != valid_height);
  748. ERR_FAIL_COND(p_layers[i]->get_format() != valid_format);
  749. ERR_FAIL_COND(p_layers[i]->has_mipmaps() != valid_mipmaps);
  750. }
  751. images.push_back(_validate_texture_format(p_layers[i], ret_format));
  752. }
  753. }
  754. Texture texture;
  755. texture.type = TextureStorage::TYPE_LAYERED;
  756. texture.layered_type = p_layered_type;
  757. texture.width = p_layers[0]->get_width();
  758. texture.height = p_layers[0]->get_height();
  759. texture.layers = p_layers.size();
  760. texture.mipmaps = p_layers[0]->get_mipmap_count() + 1;
  761. texture.depth = 1;
  762. texture.format = p_layers[0]->get_format();
  763. texture.validated_format = images[0]->get_format();
  764. switch (p_layered_type) {
  765. case RS::TEXTURE_LAYERED_2D_ARRAY: {
  766. texture.rd_type = RD::TEXTURE_TYPE_2D_ARRAY;
  767. } break;
  768. case RS::TEXTURE_LAYERED_CUBEMAP: {
  769. texture.rd_type = RD::TEXTURE_TYPE_CUBE;
  770. } break;
  771. case RS::TEXTURE_LAYERED_CUBEMAP_ARRAY: {
  772. texture.rd_type = RD::TEXTURE_TYPE_CUBE_ARRAY;
  773. } break;
  774. default:
  775. ERR_FAIL(); // Shouldn't happen, silence warnings.
  776. }
  777. texture.rd_format = ret_format.format;
  778. texture.rd_format_srgb = ret_format.format_srgb;
  779. RD::TextureFormat rd_format;
  780. RD::TextureView rd_view;
  781. { //attempt register
  782. rd_format.format = texture.rd_format;
  783. rd_format.width = texture.width;
  784. rd_format.height = texture.height;
  785. rd_format.depth = 1;
  786. rd_format.array_layers = texture.layers;
  787. rd_format.mipmaps = texture.mipmaps;
  788. rd_format.texture_type = texture.rd_type;
  789. rd_format.samples = RD::TEXTURE_SAMPLES_1;
  790. rd_format.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT | RD::TEXTURE_USAGE_CAN_COPY_FROM_BIT;
  791. if (texture.rd_format_srgb != RD::DATA_FORMAT_MAX) {
  792. rd_format.shareable_formats.push_back(texture.rd_format);
  793. rd_format.shareable_formats.push_back(texture.rd_format_srgb);
  794. }
  795. }
  796. {
  797. rd_view.swizzle_r = ret_format.swizzle_r;
  798. rd_view.swizzle_g = ret_format.swizzle_g;
  799. rd_view.swizzle_b = ret_format.swizzle_b;
  800. rd_view.swizzle_a = ret_format.swizzle_a;
  801. }
  802. Vector<Vector<uint8_t>> data_slices;
  803. for (int i = 0; i < images.size(); i++) {
  804. Vector<uint8_t> data = images[i]->get_data(); //use image data
  805. data_slices.push_back(data);
  806. }
  807. texture.rd_texture = RD::get_singleton()->texture_create(rd_format, rd_view, data_slices);
  808. ERR_FAIL_COND(texture.rd_texture.is_null());
  809. if (texture.rd_format_srgb != RD::DATA_FORMAT_MAX) {
  810. rd_view.format_override = texture.rd_format_srgb;
  811. texture.rd_texture_srgb = RD::get_singleton()->texture_create_shared(rd_view, texture.rd_texture);
  812. if (texture.rd_texture_srgb.is_null()) {
  813. RD::get_singleton()->free(texture.rd_texture);
  814. ERR_FAIL_COND(texture.rd_texture_srgb.is_null());
  815. }
  816. }
  817. //used for 2D, overridable
  818. texture.width_2d = texture.width;
  819. texture.height_2d = texture.height;
  820. texture.is_render_target = false;
  821. texture.rd_view = rd_view;
  822. texture.is_proxy = false;
  823. texture_owner.initialize_rid(p_texture, texture);
  824. }
  825. void TextureStorage::texture_3d_initialize(RID p_texture, Image::Format p_format, int p_width, int p_height, int p_depth, bool p_mipmaps, const Vector<Ref<Image>> &p_data) {
  826. ERR_FAIL_COND(p_data.is_empty());
  827. Image::Image3DValidateError verr = Image::validate_3d_image(p_format, p_width, p_height, p_depth, p_mipmaps, p_data);
  828. if (verr != Image::VALIDATE_3D_OK) {
  829. ERR_FAIL_MSG(Image::get_3d_image_validation_error_text(verr));
  830. }
  831. TextureToRDFormat ret_format;
  832. Image::Format validated_format = Image::FORMAT_MAX;
  833. Vector<uint8_t> all_data;
  834. uint32_t mipmap_count = 0;
  835. Vector<Texture::BufferSlice3D> slices;
  836. {
  837. Vector<Ref<Image>> images;
  838. uint32_t all_data_size = 0;
  839. images.resize(p_data.size());
  840. for (int i = 0; i < p_data.size(); i++) {
  841. TextureToRDFormat f;
  842. images.write[i] = _validate_texture_format(p_data[i], f);
  843. if (i == 0) {
  844. ret_format = f;
  845. validated_format = images[0]->get_format();
  846. }
  847. all_data_size += images[i]->get_data().size();
  848. }
  849. all_data.resize(all_data_size); //consolidate all data here
  850. uint32_t offset = 0;
  851. Size2i prev_size;
  852. for (int i = 0; i < p_data.size(); i++) {
  853. uint32_t s = images[i]->get_data().size();
  854. memcpy(&all_data.write[offset], images[i]->get_data().ptr(), s);
  855. {
  856. Texture::BufferSlice3D slice;
  857. slice.size.width = images[i]->get_width();
  858. slice.size.height = images[i]->get_height();
  859. slice.offset = offset;
  860. slice.buffer_size = s;
  861. slices.push_back(slice);
  862. }
  863. offset += s;
  864. Size2i img_size(images[i]->get_width(), images[i]->get_height());
  865. if (img_size != prev_size) {
  866. mipmap_count++;
  867. }
  868. prev_size = img_size;
  869. }
  870. }
  871. Texture texture;
  872. texture.type = TextureStorage::TYPE_3D;
  873. texture.width = p_width;
  874. texture.height = p_height;
  875. texture.depth = p_depth;
  876. texture.mipmaps = mipmap_count;
  877. texture.format = p_data[0]->get_format();
  878. texture.validated_format = validated_format;
  879. texture.buffer_size_3d = all_data.size();
  880. texture.buffer_slices_3d = slices;
  881. texture.rd_type = RD::TEXTURE_TYPE_3D;
  882. texture.rd_format = ret_format.format;
  883. texture.rd_format_srgb = ret_format.format_srgb;
  884. RD::TextureFormat rd_format;
  885. RD::TextureView rd_view;
  886. { //attempt register
  887. rd_format.format = texture.rd_format;
  888. rd_format.width = texture.width;
  889. rd_format.height = texture.height;
  890. rd_format.depth = texture.depth;
  891. rd_format.array_layers = 1;
  892. rd_format.mipmaps = texture.mipmaps;
  893. rd_format.texture_type = texture.rd_type;
  894. rd_format.samples = RD::TEXTURE_SAMPLES_1;
  895. rd_format.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT | RD::TEXTURE_USAGE_CAN_COPY_FROM_BIT;
  896. if (texture.rd_format_srgb != RD::DATA_FORMAT_MAX) {
  897. rd_format.shareable_formats.push_back(texture.rd_format);
  898. rd_format.shareable_formats.push_back(texture.rd_format_srgb);
  899. }
  900. }
  901. {
  902. rd_view.swizzle_r = ret_format.swizzle_r;
  903. rd_view.swizzle_g = ret_format.swizzle_g;
  904. rd_view.swizzle_b = ret_format.swizzle_b;
  905. rd_view.swizzle_a = ret_format.swizzle_a;
  906. }
  907. Vector<Vector<uint8_t>> data_slices;
  908. data_slices.push_back(all_data); //one slice
  909. texture.rd_texture = RD::get_singleton()->texture_create(rd_format, rd_view, data_slices);
  910. ERR_FAIL_COND(texture.rd_texture.is_null());
  911. if (texture.rd_format_srgb != RD::DATA_FORMAT_MAX) {
  912. rd_view.format_override = texture.rd_format_srgb;
  913. texture.rd_texture_srgb = RD::get_singleton()->texture_create_shared(rd_view, texture.rd_texture);
  914. if (texture.rd_texture_srgb.is_null()) {
  915. RD::get_singleton()->free(texture.rd_texture);
  916. ERR_FAIL_COND(texture.rd_texture_srgb.is_null());
  917. }
  918. }
  919. //used for 2D, overridable
  920. texture.width_2d = texture.width;
  921. texture.height_2d = texture.height;
  922. texture.is_render_target = false;
  923. texture.rd_view = rd_view;
  924. texture.is_proxy = false;
  925. texture_owner.initialize_rid(p_texture, texture);
  926. }
  927. void TextureStorage::texture_proxy_initialize(RID p_texture, RID p_base) {
  928. Texture *tex = texture_owner.get_or_null(p_base);
  929. ERR_FAIL_NULL(tex);
  930. Texture proxy_tex = *tex;
  931. proxy_tex.rd_view.format_override = tex->rd_format;
  932. proxy_tex.rd_texture = RD::get_singleton()->texture_create_shared(proxy_tex.rd_view, tex->rd_texture);
  933. if (proxy_tex.rd_texture_srgb.is_valid()) {
  934. proxy_tex.rd_view.format_override = tex->rd_format_srgb;
  935. proxy_tex.rd_texture_srgb = RD::get_singleton()->texture_create_shared(proxy_tex.rd_view, tex->rd_texture);
  936. }
  937. proxy_tex.proxy_to = p_base;
  938. proxy_tex.is_render_target = false;
  939. proxy_tex.is_proxy = true;
  940. proxy_tex.proxies.clear();
  941. texture_owner.initialize_rid(p_texture, proxy_tex);
  942. tex->proxies.push_back(p_texture);
  943. }
  944. void TextureStorage::_texture_2d_update(RID p_texture, const Ref<Image> &p_image, int p_layer, bool p_immediate) {
  945. ERR_FAIL_COND(p_image.is_null() || p_image->is_empty());
  946. Texture *tex = texture_owner.get_or_null(p_texture);
  947. ERR_FAIL_NULL(tex);
  948. ERR_FAIL_COND(tex->is_render_target);
  949. ERR_FAIL_COND(p_image->get_width() != tex->width || p_image->get_height() != tex->height);
  950. ERR_FAIL_COND(p_image->get_format() != tex->format);
  951. if (tex->type == TextureStorage::TYPE_LAYERED) {
  952. ERR_FAIL_INDEX(p_layer, tex->layers);
  953. }
  954. #ifdef TOOLS_ENABLED
  955. tex->image_cache_2d.unref();
  956. #endif
  957. TextureToRDFormat f;
  958. Ref<Image> validated = _validate_texture_format(p_image, f);
  959. RD::get_singleton()->texture_update(tex->rd_texture, p_layer, validated->get_data());
  960. }
  961. void TextureStorage::texture_2d_update(RID p_texture, const Ref<Image> &p_image, int p_layer) {
  962. _texture_2d_update(p_texture, p_image, p_layer, false);
  963. }
  964. void TextureStorage::texture_3d_update(RID p_texture, const Vector<Ref<Image>> &p_data) {
  965. Texture *tex = texture_owner.get_or_null(p_texture);
  966. ERR_FAIL_NULL(tex);
  967. ERR_FAIL_COND(tex->type != TextureStorage::TYPE_3D);
  968. Image::Image3DValidateError verr = Image::validate_3d_image(tex->format, tex->width, tex->height, tex->depth, tex->mipmaps > 1, p_data);
  969. if (verr != Image::VALIDATE_3D_OK) {
  970. ERR_FAIL_MSG(Image::get_3d_image_validation_error_text(verr));
  971. }
  972. Vector<uint8_t> all_data;
  973. {
  974. Vector<Ref<Image>> images;
  975. uint32_t all_data_size = 0;
  976. images.resize(p_data.size());
  977. for (int i = 0; i < p_data.size(); i++) {
  978. Ref<Image> image = p_data[i];
  979. if (image->get_format() != tex->validated_format) {
  980. image = image->duplicate();
  981. image->convert(tex->validated_format);
  982. }
  983. all_data_size += image->get_data().size();
  984. images.write[i] = image;
  985. }
  986. all_data.resize(all_data_size); //consolidate all data here
  987. uint32_t offset = 0;
  988. for (int i = 0; i < p_data.size(); i++) {
  989. uint32_t s = images[i]->get_data().size();
  990. memcpy(&all_data.write[offset], images[i]->get_data().ptr(), s);
  991. offset += s;
  992. }
  993. }
  994. RD::get_singleton()->texture_update(tex->rd_texture, 0, all_data);
  995. }
  996. void TextureStorage::texture_proxy_update(RID p_texture, RID p_proxy_to) {
  997. Texture *tex = texture_owner.get_or_null(p_texture);
  998. ERR_FAIL_NULL(tex);
  999. ERR_FAIL_COND(!tex->is_proxy);
  1000. Texture *proxy_to = texture_owner.get_or_null(p_proxy_to);
  1001. ERR_FAIL_NULL(proxy_to);
  1002. ERR_FAIL_COND(proxy_to->is_proxy);
  1003. if (tex->proxy_to.is_valid()) {
  1004. //unlink proxy
  1005. if (RD::get_singleton()->texture_is_valid(tex->rd_texture)) {
  1006. RD::get_singleton()->free(tex->rd_texture);
  1007. tex->rd_texture = RID();
  1008. }
  1009. if (RD::get_singleton()->texture_is_valid(tex->rd_texture_srgb)) {
  1010. RD::get_singleton()->free(tex->rd_texture_srgb);
  1011. tex->rd_texture_srgb = RID();
  1012. }
  1013. Texture *prev_tex = texture_owner.get_or_null(tex->proxy_to);
  1014. ERR_FAIL_NULL(prev_tex);
  1015. prev_tex->proxies.erase(p_texture);
  1016. }
  1017. // Copy canvas_texture so it doesn't leak.
  1018. CanvasTexture *canvas_texture = tex->canvas_texture;
  1019. *tex = *proxy_to;
  1020. tex->proxy_to = p_proxy_to;
  1021. tex->is_render_target = false;
  1022. tex->is_proxy = true;
  1023. tex->proxies.clear();
  1024. proxy_to->proxies.push_back(p_texture);
  1025. tex->canvas_texture = canvas_texture;
  1026. tex->rd_view.format_override = tex->rd_format;
  1027. tex->rd_texture = RD::get_singleton()->texture_create_shared(tex->rd_view, proxy_to->rd_texture);
  1028. if (tex->rd_texture_srgb.is_valid()) {
  1029. tex->rd_view.format_override = tex->rd_format_srgb;
  1030. tex->rd_texture_srgb = RD::get_singleton()->texture_create_shared(tex->rd_view, proxy_to->rd_texture);
  1031. }
  1032. }
  1033. //these two APIs can be used together or in combination with the others.
  1034. void TextureStorage::texture_2d_placeholder_initialize(RID p_texture) {
  1035. //this could be better optimized to reuse an existing image , done this way
  1036. //for now to get it working
  1037. Ref<Image> image = Image::create_empty(4, 4, false, Image::FORMAT_RGBA8);
  1038. image->fill(Color(1, 0, 1, 1));
  1039. texture_2d_initialize(p_texture, image);
  1040. }
  1041. void TextureStorage::texture_2d_layered_placeholder_initialize(RID p_texture, RS::TextureLayeredType p_layered_type) {
  1042. //this could be better optimized to reuse an existing image , done this way
  1043. //for now to get it working
  1044. Ref<Image> image = Image::create_empty(4, 4, false, Image::FORMAT_RGBA8);
  1045. image->fill(Color(1, 0, 1, 1));
  1046. Vector<Ref<Image>> images;
  1047. if (p_layered_type == RS::TEXTURE_LAYERED_2D_ARRAY) {
  1048. images.push_back(image);
  1049. } else {
  1050. //cube
  1051. for (int i = 0; i < 6; i++) {
  1052. images.push_back(image);
  1053. }
  1054. }
  1055. texture_2d_layered_initialize(p_texture, images, p_layered_type);
  1056. }
  1057. void TextureStorage::texture_3d_placeholder_initialize(RID p_texture) {
  1058. //this could be better optimized to reuse an existing image , done this way
  1059. //for now to get it working
  1060. Ref<Image> image = Image::create_empty(4, 4, false, Image::FORMAT_RGBA8);
  1061. image->fill(Color(1, 0, 1, 1));
  1062. Vector<Ref<Image>> images;
  1063. //cube
  1064. for (int i = 0; i < 4; i++) {
  1065. images.push_back(image);
  1066. }
  1067. texture_3d_initialize(p_texture, Image::FORMAT_RGBA8, 4, 4, 4, false, images);
  1068. }
  1069. Ref<Image> TextureStorage::texture_2d_get(RID p_texture) const {
  1070. Texture *tex = texture_owner.get_or_null(p_texture);
  1071. ERR_FAIL_NULL_V(tex, Ref<Image>());
  1072. #ifdef TOOLS_ENABLED
  1073. if (tex->image_cache_2d.is_valid() && !tex->is_render_target) {
  1074. return tex->image_cache_2d;
  1075. }
  1076. #endif
  1077. Vector<uint8_t> data = RD::get_singleton()->texture_get_data(tex->rd_texture, 0);
  1078. ERR_FAIL_COND_V(data.is_empty(), Ref<Image>());
  1079. Ref<Image> image;
  1080. // Expand RGB10_A2 into RGBAH. This is needed for capturing viewport data
  1081. // when using the mobile renderer with HDR mode on.
  1082. if (tex->rd_format == RD::DATA_FORMAT_A2B10G10R10_UNORM_PACK32) {
  1083. Vector<uint8_t> new_data;
  1084. new_data.resize(data.size() * 2);
  1085. uint16_t *ndp = (uint16_t *)new_data.ptr();
  1086. uint32_t *ptr = (uint32_t *)data.ptr();
  1087. uint32_t num_pixels = data.size() / 4;
  1088. for (uint32_t ofs = 0; ofs < num_pixels; ofs++) {
  1089. uint32_t px = ptr[ofs];
  1090. uint32_t r = (px & 0x3FF);
  1091. uint32_t g = ((px >> 10) & 0x3FF);
  1092. uint32_t b = ((px >> 20) & 0x3FF);
  1093. uint32_t a = ((px >> 30) & 0x3);
  1094. ndp[ofs * 4 + 0] = Math::make_half_float(float(r) / 1023.0);
  1095. ndp[ofs * 4 + 1] = Math::make_half_float(float(g) / 1023.0);
  1096. ndp[ofs * 4 + 2] = Math::make_half_float(float(b) / 1023.0);
  1097. ndp[ofs * 4 + 3] = Math::make_half_float(float(a) / 3.0);
  1098. }
  1099. image = Image::create_from_data(tex->width, tex->height, tex->mipmaps > 1, tex->validated_format, new_data);
  1100. } else {
  1101. image = Image::create_from_data(tex->width, tex->height, tex->mipmaps > 1, tex->validated_format, data);
  1102. }
  1103. ERR_FAIL_COND_V(image->is_empty(), Ref<Image>());
  1104. if (tex->format != tex->validated_format) {
  1105. image->convert(tex->format);
  1106. }
  1107. #ifdef TOOLS_ENABLED
  1108. if (Engine::get_singleton()->is_editor_hint() && !tex->is_render_target) {
  1109. tex->image_cache_2d = image;
  1110. }
  1111. #endif
  1112. return image;
  1113. }
  1114. Ref<Image> TextureStorage::texture_2d_layer_get(RID p_texture, int p_layer) const {
  1115. Texture *tex = texture_owner.get_or_null(p_texture);
  1116. ERR_FAIL_NULL_V(tex, Ref<Image>());
  1117. Vector<uint8_t> data = RD::get_singleton()->texture_get_data(tex->rd_texture, p_layer);
  1118. ERR_FAIL_COND_V(data.is_empty(), Ref<Image>());
  1119. Ref<Image> image = Image::create_from_data(tex->width, tex->height, tex->mipmaps > 1, tex->validated_format, data);
  1120. ERR_FAIL_COND_V(image->is_empty(), Ref<Image>());
  1121. if (tex->format != tex->validated_format) {
  1122. image->convert(tex->format);
  1123. }
  1124. return image;
  1125. }
  1126. Vector<Ref<Image>> TextureStorage::texture_3d_get(RID p_texture) const {
  1127. Texture *tex = texture_owner.get_or_null(p_texture);
  1128. ERR_FAIL_NULL_V(tex, Vector<Ref<Image>>());
  1129. ERR_FAIL_COND_V(tex->type != TextureStorage::TYPE_3D, Vector<Ref<Image>>());
  1130. Vector<uint8_t> all_data = RD::get_singleton()->texture_get_data(tex->rd_texture, 0);
  1131. ERR_FAIL_COND_V(all_data.size() != (int)tex->buffer_size_3d, Vector<Ref<Image>>());
  1132. Vector<Ref<Image>> ret;
  1133. for (int i = 0; i < tex->buffer_slices_3d.size(); i++) {
  1134. const Texture::BufferSlice3D &bs = tex->buffer_slices_3d[i];
  1135. ERR_FAIL_COND_V(bs.offset >= (uint32_t)all_data.size(), Vector<Ref<Image>>());
  1136. ERR_FAIL_COND_V(bs.offset + bs.buffer_size > (uint32_t)all_data.size(), Vector<Ref<Image>>());
  1137. Vector<uint8_t> sub_region = all_data.slice(bs.offset, bs.offset + bs.buffer_size);
  1138. Ref<Image> img = Image::create_from_data(bs.size.width, bs.size.height, false, tex->validated_format, sub_region);
  1139. ERR_FAIL_COND_V(img->is_empty(), Vector<Ref<Image>>());
  1140. if (tex->format != tex->validated_format) {
  1141. img->convert(tex->format);
  1142. }
  1143. ret.push_back(img);
  1144. }
  1145. return ret;
  1146. }
  1147. void TextureStorage::texture_replace(RID p_texture, RID p_by_texture) {
  1148. Texture *tex = texture_owner.get_or_null(p_texture);
  1149. ERR_FAIL_NULL(tex);
  1150. ERR_FAIL_COND(tex->proxy_to.is_valid()); //can't replace proxy
  1151. Texture *by_tex = texture_owner.get_or_null(p_by_texture);
  1152. ERR_FAIL_NULL(by_tex);
  1153. ERR_FAIL_COND(by_tex->proxy_to.is_valid()); //can't replace proxy
  1154. if (tex == by_tex) {
  1155. return;
  1156. }
  1157. if (tex->rd_texture_srgb.is_valid()) {
  1158. RD::get_singleton()->free(tex->rd_texture_srgb);
  1159. }
  1160. RD::get_singleton()->free(tex->rd_texture);
  1161. if (tex->canvas_texture) {
  1162. memdelete(tex->canvas_texture);
  1163. tex->canvas_texture = nullptr;
  1164. }
  1165. Vector<RID> proxies_to_update = tex->proxies;
  1166. Vector<RID> proxies_to_redirect = by_tex->proxies;
  1167. *tex = *by_tex;
  1168. tex->proxies = proxies_to_update; //restore proxies, so they can be updated
  1169. if (tex->canvas_texture) {
  1170. tex->canvas_texture->diffuse = p_texture; //update
  1171. }
  1172. for (int i = 0; i < proxies_to_update.size(); i++) {
  1173. texture_proxy_update(proxies_to_update[i], p_texture);
  1174. }
  1175. for (int i = 0; i < proxies_to_redirect.size(); i++) {
  1176. texture_proxy_update(proxies_to_redirect[i], p_texture);
  1177. }
  1178. //delete last, so proxies can be updated
  1179. texture_owner.free(p_by_texture);
  1180. decal_atlas_mark_dirty_on_texture(p_texture);
  1181. }
  1182. void TextureStorage::texture_set_size_override(RID p_texture, int p_width, int p_height) {
  1183. Texture *tex = texture_owner.get_or_null(p_texture);
  1184. ERR_FAIL_NULL(tex);
  1185. ERR_FAIL_COND(tex->type != TextureStorage::TYPE_2D);
  1186. tex->width_2d = p_width;
  1187. tex->height_2d = p_height;
  1188. }
  1189. void TextureStorage::texture_set_path(RID p_texture, const String &p_path) {
  1190. Texture *tex = texture_owner.get_or_null(p_texture);
  1191. ERR_FAIL_NULL(tex);
  1192. tex->path = p_path;
  1193. }
  1194. String TextureStorage::texture_get_path(RID p_texture) const {
  1195. Texture *tex = texture_owner.get_or_null(p_texture);
  1196. ERR_FAIL_NULL_V(tex, String());
  1197. return tex->path;
  1198. }
  1199. Image::Format TextureStorage::texture_get_format(RID p_texture) const {
  1200. Texture *tex = texture_owner.get_or_null(p_texture);
  1201. ERR_FAIL_NULL_V(tex, Image::FORMAT_MAX);
  1202. return tex->format;
  1203. }
  1204. void TextureStorage::texture_set_detect_3d_callback(RID p_texture, RS::TextureDetectCallback p_callback, void *p_userdata) {
  1205. Texture *tex = texture_owner.get_or_null(p_texture);
  1206. ERR_FAIL_NULL(tex);
  1207. tex->detect_3d_callback_ud = p_userdata;
  1208. tex->detect_3d_callback = p_callback;
  1209. }
  1210. void TextureStorage::texture_set_detect_normal_callback(RID p_texture, RS::TextureDetectCallback p_callback, void *p_userdata) {
  1211. Texture *tex = texture_owner.get_or_null(p_texture);
  1212. ERR_FAIL_NULL(tex);
  1213. tex->detect_normal_callback_ud = p_userdata;
  1214. tex->detect_normal_callback = p_callback;
  1215. }
  1216. void TextureStorage::texture_set_detect_roughness_callback(RID p_texture, RS::TextureDetectRoughnessCallback p_callback, void *p_userdata) {
  1217. Texture *tex = texture_owner.get_or_null(p_texture);
  1218. ERR_FAIL_NULL(tex);
  1219. tex->detect_roughness_callback_ud = p_userdata;
  1220. tex->detect_roughness_callback = p_callback;
  1221. }
  1222. void TextureStorage::texture_debug_usage(List<RS::TextureInfo> *r_info) {
  1223. List<RID> textures;
  1224. texture_owner.get_owned_list(&textures);
  1225. for (List<RID>::Element *E = textures.front(); E; E = E->next()) {
  1226. Texture *t = texture_owner.get_or_null(E->get());
  1227. if (!t) {
  1228. continue;
  1229. }
  1230. RS::TextureInfo tinfo;
  1231. tinfo.path = t->path;
  1232. tinfo.format = t->format;
  1233. tinfo.width = t->width;
  1234. tinfo.height = t->height;
  1235. tinfo.depth = t->depth;
  1236. tinfo.bytes = Image::get_image_data_size(t->width, t->height, t->format, t->mipmaps);
  1237. r_info->push_back(tinfo);
  1238. }
  1239. }
  1240. void TextureStorage::texture_set_force_redraw_if_visible(RID p_texture, bool p_enable) {
  1241. }
  1242. Size2 TextureStorage::texture_size_with_proxy(RID p_proxy) {
  1243. return texture_2d_get_size(p_proxy);
  1244. }
  1245. void TextureStorage::texture_rd_initialize(RID p_texture, const RID &p_rd_texture, const RS::TextureLayeredType p_layer_type) {
  1246. ERR_FAIL_COND(!RD::get_singleton()->texture_is_valid(p_rd_texture));
  1247. // TODO : investigate if we can support this, will need to be able to obtain the order and obtain the slice info
  1248. ERR_FAIL_COND_MSG(RD::get_singleton()->texture_is_shared(p_rd_texture), "Please create the texture object using the original texture");
  1249. RD::TextureFormat tf = RD::get_singleton()->texture_get_format(p_rd_texture);
  1250. ERR_FAIL_COND(!(tf.usage_bits & RD::TEXTURE_USAGE_SAMPLING_BIT));
  1251. TextureFromRDFormat imfmt;
  1252. _texture_format_from_rd(tf.format, imfmt);
  1253. ERR_FAIL_COND(imfmt.image_format == Image::FORMAT_MAX);
  1254. Texture texture;
  1255. switch (tf.texture_type) {
  1256. case RD::TEXTURE_TYPE_2D: {
  1257. ERR_FAIL_COND(tf.array_layers != 1);
  1258. texture.type = TextureStorage::TYPE_2D;
  1259. } break;
  1260. case RD::TEXTURE_TYPE_2D_ARRAY: {
  1261. // RenderingDevice doesn't distinguish between Array textures and Cube textures
  1262. // this condition covers TextureArrays, TextureCube, and TextureCubeArray.
  1263. ERR_FAIL_COND(tf.array_layers == 1);
  1264. texture.type = TextureStorage::TYPE_LAYERED;
  1265. texture.layered_type = p_layer_type;
  1266. } break;
  1267. case RD::TEXTURE_TYPE_3D: {
  1268. ERR_FAIL_COND(tf.array_layers != 1);
  1269. texture.type = TextureStorage::TYPE_3D;
  1270. } break;
  1271. default: {
  1272. ERR_FAIL_MSG("This RD texture can't be used as a render texture");
  1273. } break;
  1274. }
  1275. texture.width = tf.width;
  1276. texture.height = tf.height;
  1277. texture.depth = tf.depth;
  1278. texture.layers = tf.array_layers;
  1279. texture.mipmaps = tf.mipmaps;
  1280. texture.format = imfmt.image_format;
  1281. texture.validated_format = texture.format; // ??
  1282. RD::TextureView rd_view;
  1283. rd_view.format_override = imfmt.rd_format == tf.format ? RD::DATA_FORMAT_MAX : imfmt.rd_format;
  1284. rd_view.swizzle_r = imfmt.swizzle_r;
  1285. rd_view.swizzle_g = imfmt.swizzle_g;
  1286. rd_view.swizzle_b = imfmt.swizzle_b;
  1287. rd_view.swizzle_a = imfmt.swizzle_a;
  1288. texture.rd_type = tf.texture_type;
  1289. texture.rd_view = rd_view;
  1290. texture.rd_format = imfmt.rd_format;
  1291. // We create a shared texture here even if our view matches, so we don't obtain ownership.
  1292. texture.rd_texture = RD::get_singleton()->texture_create_shared(rd_view, p_rd_texture);
  1293. if (imfmt.rd_format_srgb != RD::DATA_FORMAT_MAX) {
  1294. rd_view.format_override = imfmt.rd_format_srgb == tf.format ? RD::DATA_FORMAT_MAX : imfmt.rd_format;
  1295. texture.rd_format_srgb = imfmt.rd_format_srgb;
  1296. // We create a shared texture here even if our view matches, so we don't obtain ownership.
  1297. texture.rd_texture_srgb = RD::get_singleton()->texture_create_shared(rd_view, p_rd_texture);
  1298. }
  1299. // TODO figure out what to do with slices
  1300. texture.width_2d = texture.width;
  1301. texture.height_2d = texture.height;
  1302. texture.is_render_target = false;
  1303. texture.is_proxy = false;
  1304. texture_owner.initialize_rid(p_texture, texture);
  1305. }
  1306. RID TextureStorage::texture_get_rd_texture(RID p_texture, bool p_srgb) const {
  1307. if (p_texture.is_null()) {
  1308. return RID();
  1309. }
  1310. Texture *tex = texture_owner.get_or_null(p_texture);
  1311. if (!tex) {
  1312. return RID();
  1313. }
  1314. return (p_srgb && tex->rd_texture_srgb.is_valid()) ? tex->rd_texture_srgb : tex->rd_texture;
  1315. }
  1316. uint64_t TextureStorage::texture_get_native_handle(RID p_texture, bool p_srgb) const {
  1317. Texture *tex = texture_owner.get_or_null(p_texture);
  1318. ERR_FAIL_NULL_V(tex, 0);
  1319. if (p_srgb && tex->rd_texture_srgb.is_valid()) {
  1320. return RD::get_singleton()->get_driver_resource(RD::DRIVER_RESOURCE_TEXTURE, tex->rd_texture_srgb);
  1321. } else {
  1322. return RD::get_singleton()->get_driver_resource(RD::DRIVER_RESOURCE_TEXTURE, tex->rd_texture);
  1323. }
  1324. }
  1325. Ref<Image> TextureStorage::_validate_texture_format(const Ref<Image> &p_image, TextureToRDFormat &r_format) {
  1326. Ref<Image> image = p_image->duplicate();
  1327. switch (p_image->get_format()) {
  1328. case Image::FORMAT_L8: {
  1329. r_format.format = RD::DATA_FORMAT_R8_UNORM;
  1330. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1331. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_R;
  1332. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_R;
  1333. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1334. } break; //luminance
  1335. case Image::FORMAT_LA8: {
  1336. r_format.format = RD::DATA_FORMAT_R8G8_UNORM;
  1337. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1338. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_R;
  1339. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_R;
  1340. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_G;
  1341. } break; //luminance-alpha
  1342. case Image::FORMAT_R8: {
  1343. r_format.format = RD::DATA_FORMAT_R8_UNORM;
  1344. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1345. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_ZERO;
  1346. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1347. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1348. } break;
  1349. case Image::FORMAT_RG8: {
  1350. r_format.format = RD::DATA_FORMAT_R8G8_UNORM;
  1351. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1352. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1353. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1354. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1355. } break;
  1356. case Image::FORMAT_RGB8: {
  1357. //this format is not mandatory for specification, check if supported first
  1358. if (false && RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_R8G8B8_UNORM, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT) && RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_R8G8B8_SRGB, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1359. r_format.format = RD::DATA_FORMAT_R8G8B8_UNORM;
  1360. r_format.format_srgb = RD::DATA_FORMAT_R8G8B8_SRGB;
  1361. } else {
  1362. //not supported, reconvert
  1363. r_format.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  1364. r_format.format_srgb = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  1365. image->convert(Image::FORMAT_RGBA8);
  1366. }
  1367. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1368. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1369. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1370. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1371. } break;
  1372. case Image::FORMAT_RGBA8: {
  1373. r_format.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  1374. r_format.format_srgb = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  1375. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1376. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1377. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1378. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1379. } break;
  1380. case Image::FORMAT_RGBA4444: {
  1381. r_format.format = RD::DATA_FORMAT_B4G4R4A4_UNORM_PACK16;
  1382. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_B; //needs swizzle
  1383. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1384. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_R;
  1385. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1386. } break;
  1387. case Image::FORMAT_RGB565: {
  1388. r_format.format = RD::DATA_FORMAT_B5G6R5_UNORM_PACK16;
  1389. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_B;
  1390. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1391. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_R;
  1392. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1393. } break;
  1394. case Image::FORMAT_RF: {
  1395. r_format.format = RD::DATA_FORMAT_R32_SFLOAT;
  1396. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1397. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_ZERO;
  1398. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1399. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1400. } break; //float
  1401. case Image::FORMAT_RGF: {
  1402. r_format.format = RD::DATA_FORMAT_R32G32_SFLOAT;
  1403. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1404. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1405. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1406. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1407. } break;
  1408. case Image::FORMAT_RGBF: {
  1409. //this format is not mandatory for specification, check if supported first
  1410. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_R32G32B32_SFLOAT, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1411. r_format.format = RD::DATA_FORMAT_R32G32B32_SFLOAT;
  1412. } else {
  1413. //not supported, reconvert
  1414. r_format.format = RD::DATA_FORMAT_R32G32B32A32_SFLOAT;
  1415. image->convert(Image::FORMAT_RGBAF);
  1416. }
  1417. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1418. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1419. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1420. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1421. } break;
  1422. case Image::FORMAT_RGBAF: {
  1423. r_format.format = RD::DATA_FORMAT_R32G32B32A32_SFLOAT;
  1424. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1425. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1426. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1427. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1428. } break;
  1429. case Image::FORMAT_RH: {
  1430. r_format.format = RD::DATA_FORMAT_R16_SFLOAT;
  1431. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1432. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_ZERO;
  1433. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1434. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1435. } break; //half float
  1436. case Image::FORMAT_RGH: {
  1437. r_format.format = RD::DATA_FORMAT_R16G16_SFLOAT;
  1438. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1439. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1440. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1441. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1442. } break;
  1443. case Image::FORMAT_RGBH: {
  1444. //this format is not mandatory for specification, check if supported first
  1445. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_R16G16B16_SFLOAT, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1446. r_format.format = RD::DATA_FORMAT_R16G16B16_SFLOAT;
  1447. } else {
  1448. //not supported, reconvert
  1449. r_format.format = RD::DATA_FORMAT_R16G16B16A16_SFLOAT;
  1450. image->convert(Image::FORMAT_RGBAH);
  1451. }
  1452. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1453. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1454. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1455. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1456. } break;
  1457. case Image::FORMAT_RGBAH: {
  1458. r_format.format = RD::DATA_FORMAT_R16G16B16A16_SFLOAT;
  1459. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1460. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1461. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1462. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1463. } break;
  1464. case Image::FORMAT_RGBE9995: {
  1465. r_format.format = RD::DATA_FORMAT_E5B9G9R9_UFLOAT_PACK32;
  1466. // TODO: Need to make a function in Image to swap bits for this.
  1467. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_IDENTITY;
  1468. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_IDENTITY;
  1469. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_IDENTITY;
  1470. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_IDENTITY;
  1471. } break;
  1472. case Image::FORMAT_DXT1: {
  1473. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_BC1_RGB_UNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1474. r_format.format = RD::DATA_FORMAT_BC1_RGB_UNORM_BLOCK;
  1475. r_format.format_srgb = RD::DATA_FORMAT_BC1_RGB_SRGB_BLOCK;
  1476. } else {
  1477. //not supported, reconvert
  1478. r_format.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  1479. r_format.format_srgb = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  1480. image->decompress();
  1481. image->convert(Image::FORMAT_RGBA8);
  1482. }
  1483. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1484. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1485. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1486. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1487. } break; //s3tc bc1
  1488. case Image::FORMAT_DXT3: {
  1489. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_BC2_UNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1490. r_format.format = RD::DATA_FORMAT_BC2_UNORM_BLOCK;
  1491. r_format.format_srgb = RD::DATA_FORMAT_BC2_SRGB_BLOCK;
  1492. } else {
  1493. //not supported, reconvert
  1494. r_format.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  1495. r_format.format_srgb = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  1496. image->decompress();
  1497. image->convert(Image::FORMAT_RGBA8);
  1498. }
  1499. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1500. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1501. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1502. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1503. } break; //bc2
  1504. case Image::FORMAT_DXT5: {
  1505. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_BC3_UNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1506. r_format.format = RD::DATA_FORMAT_BC3_UNORM_BLOCK;
  1507. r_format.format_srgb = RD::DATA_FORMAT_BC3_SRGB_BLOCK;
  1508. } else {
  1509. //not supported, reconvert
  1510. r_format.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  1511. r_format.format_srgb = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  1512. image->decompress();
  1513. image->convert(Image::FORMAT_RGBA8);
  1514. }
  1515. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1516. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1517. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1518. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1519. } break; //bc3
  1520. case Image::FORMAT_RGTC_R: {
  1521. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_BC4_UNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1522. r_format.format = RD::DATA_FORMAT_BC4_UNORM_BLOCK;
  1523. } else {
  1524. //not supported, reconvert
  1525. r_format.format = RD::DATA_FORMAT_R8_UNORM;
  1526. image->decompress();
  1527. image->convert(Image::FORMAT_R8);
  1528. }
  1529. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1530. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_ZERO;
  1531. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1532. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1533. } break;
  1534. case Image::FORMAT_RGTC_RG: {
  1535. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_BC5_UNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1536. r_format.format = RD::DATA_FORMAT_BC5_UNORM_BLOCK;
  1537. } else {
  1538. //not supported, reconvert
  1539. r_format.format = RD::DATA_FORMAT_R8G8_UNORM;
  1540. image->decompress();
  1541. image->convert(Image::FORMAT_RG8);
  1542. }
  1543. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1544. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1545. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1546. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1547. } break;
  1548. case Image::FORMAT_BPTC_RGBA: {
  1549. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_BC7_UNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1550. r_format.format = RD::DATA_FORMAT_BC7_UNORM_BLOCK;
  1551. r_format.format_srgb = RD::DATA_FORMAT_BC7_SRGB_BLOCK;
  1552. } else {
  1553. //not supported, reconvert
  1554. r_format.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  1555. r_format.format_srgb = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  1556. image->decompress();
  1557. image->convert(Image::FORMAT_RGBA8);
  1558. }
  1559. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1560. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1561. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1562. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1563. } break; //btpc bc7
  1564. case Image::FORMAT_BPTC_RGBF: {
  1565. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_BC6H_SFLOAT_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1566. r_format.format = RD::DATA_FORMAT_BC6H_SFLOAT_BLOCK;
  1567. } else {
  1568. //not supported, reconvert
  1569. r_format.format = RD::DATA_FORMAT_R16G16B16A16_SFLOAT;
  1570. image->decompress();
  1571. image->convert(Image::FORMAT_RGBAH);
  1572. }
  1573. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1574. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1575. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1576. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1577. } break; //float bc6h
  1578. case Image::FORMAT_BPTC_RGBFU: {
  1579. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_BC6H_UFLOAT_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1580. r_format.format = RD::DATA_FORMAT_BC6H_UFLOAT_BLOCK;
  1581. } else {
  1582. //not supported, reconvert
  1583. r_format.format = RD::DATA_FORMAT_R16G16B16A16_SFLOAT;
  1584. image->decompress();
  1585. image->convert(Image::FORMAT_RGBAH);
  1586. }
  1587. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1588. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1589. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1590. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1591. } break; //unsigned float bc6hu
  1592. case Image::FORMAT_ETC2_R11: {
  1593. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_EAC_R11_UNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1594. r_format.format = RD::DATA_FORMAT_EAC_R11_UNORM_BLOCK;
  1595. } else {
  1596. //not supported, reconvert
  1597. r_format.format = RD::DATA_FORMAT_R8_UNORM;
  1598. image->decompress();
  1599. image->convert(Image::FORMAT_R8);
  1600. }
  1601. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1602. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_ZERO;
  1603. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1604. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1605. } break; //etc2
  1606. case Image::FORMAT_ETC2_R11S: {
  1607. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_EAC_R11_SNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1608. r_format.format = RD::DATA_FORMAT_EAC_R11_SNORM_BLOCK;
  1609. } else {
  1610. //not supported, reconvert
  1611. r_format.format = RD::DATA_FORMAT_R8_SNORM;
  1612. image->decompress();
  1613. image->convert(Image::FORMAT_R8);
  1614. }
  1615. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1616. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_ZERO;
  1617. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1618. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1619. } break; //signed: {} break; NOT srgb.
  1620. case Image::FORMAT_ETC2_RG11: {
  1621. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_EAC_R11G11_UNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1622. r_format.format = RD::DATA_FORMAT_EAC_R11G11_UNORM_BLOCK;
  1623. } else {
  1624. //not supported, reconvert
  1625. r_format.format = RD::DATA_FORMAT_R8G8_UNORM;
  1626. image->decompress();
  1627. image->convert(Image::FORMAT_RG8);
  1628. }
  1629. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1630. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1631. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1632. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1633. } break;
  1634. case Image::FORMAT_ETC2_RG11S: {
  1635. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_EAC_R11G11_SNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1636. r_format.format = RD::DATA_FORMAT_EAC_R11G11_SNORM_BLOCK;
  1637. } else {
  1638. //not supported, reconvert
  1639. r_format.format = RD::DATA_FORMAT_R8G8_SNORM;
  1640. image->decompress();
  1641. image->convert(Image::FORMAT_RG8);
  1642. }
  1643. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1644. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1645. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1646. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1647. } break;
  1648. case Image::FORMAT_ETC:
  1649. case Image::FORMAT_ETC2_RGB8: {
  1650. //ETC2 is backwards compatible with ETC1, and all modern platforms support it
  1651. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_ETC2_R8G8B8_UNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1652. r_format.format = RD::DATA_FORMAT_ETC2_R8G8B8_UNORM_BLOCK;
  1653. r_format.format_srgb = RD::DATA_FORMAT_ETC2_R8G8B8_SRGB_BLOCK;
  1654. } else {
  1655. //not supported, reconvert
  1656. r_format.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  1657. r_format.format_srgb = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  1658. image->decompress();
  1659. image->convert(Image::FORMAT_RGBA8);
  1660. }
  1661. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1662. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1663. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1664. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1665. } break;
  1666. case Image::FORMAT_ETC2_RGBA8: {
  1667. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1668. r_format.format = RD::DATA_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK;
  1669. r_format.format_srgb = RD::DATA_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK;
  1670. } else {
  1671. //not supported, reconvert
  1672. r_format.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  1673. r_format.format_srgb = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  1674. image->decompress();
  1675. image->convert(Image::FORMAT_RGBA8);
  1676. }
  1677. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1678. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1679. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1680. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1681. } break;
  1682. case Image::FORMAT_ETC2_RGB8A1: {
  1683. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1684. r_format.format = RD::DATA_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK;
  1685. r_format.format_srgb = RD::DATA_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK;
  1686. } else {
  1687. //not supported, reconvert
  1688. r_format.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  1689. r_format.format_srgb = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  1690. image->decompress();
  1691. image->convert(Image::FORMAT_RGBA8);
  1692. }
  1693. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1694. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1695. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1696. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1697. } break;
  1698. case Image::FORMAT_ETC2_RA_AS_RG: {
  1699. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1700. r_format.format = RD::DATA_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK;
  1701. r_format.format_srgb = RD::DATA_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK;
  1702. } else {
  1703. //not supported, reconvert
  1704. r_format.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  1705. r_format.format_srgb = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  1706. image->decompress();
  1707. image->convert(Image::FORMAT_RGBA8);
  1708. }
  1709. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1710. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_A;
  1711. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1712. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1713. } break;
  1714. case Image::FORMAT_DXT5_RA_AS_RG: {
  1715. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_BC3_UNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1716. r_format.format = RD::DATA_FORMAT_BC3_UNORM_BLOCK;
  1717. r_format.format_srgb = RD::DATA_FORMAT_BC3_SRGB_BLOCK;
  1718. } else {
  1719. //not supported, reconvert
  1720. r_format.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  1721. r_format.format_srgb = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  1722. image->decompress();
  1723. image->convert(Image::FORMAT_RGBA8);
  1724. }
  1725. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1726. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_A;
  1727. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1728. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1729. } break;
  1730. case Image::FORMAT_ASTC_4x4:
  1731. case Image::FORMAT_ASTC_4x4_HDR: {
  1732. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_ASTC_4x4_UNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1733. r_format.format = RD::DATA_FORMAT_ASTC_4x4_UNORM_BLOCK;
  1734. if (p_image->get_format() == Image::FORMAT_ASTC_4x4) {
  1735. r_format.format_srgb = RD::DATA_FORMAT_ASTC_4x4_SRGB_BLOCK;
  1736. }
  1737. } else {
  1738. //not supported, reconvert
  1739. r_format.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  1740. r_format.format_srgb = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  1741. image->decompress();
  1742. image->convert(Image::FORMAT_RGBA8);
  1743. }
  1744. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1745. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1746. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1747. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1748. } break; // astc 4x4
  1749. case Image::FORMAT_ASTC_8x8:
  1750. case Image::FORMAT_ASTC_8x8_HDR: {
  1751. if (RD::get_singleton()->texture_is_format_supported_for_usage(RD::DATA_FORMAT_ASTC_8x8_UNORM_BLOCK, RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_UPDATE_BIT)) {
  1752. r_format.format = RD::DATA_FORMAT_ASTC_8x8_UNORM_BLOCK;
  1753. if (p_image->get_format() == Image::FORMAT_ASTC_8x8) {
  1754. r_format.format_srgb = RD::DATA_FORMAT_ASTC_8x8_SRGB_BLOCK;
  1755. }
  1756. } else {
  1757. //not supported, reconvert
  1758. r_format.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  1759. r_format.format_srgb = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  1760. image->decompress();
  1761. image->convert(Image::FORMAT_RGBA8);
  1762. }
  1763. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1764. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1765. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1766. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1767. } break; // astc 8x8
  1768. default: {
  1769. }
  1770. }
  1771. return image;
  1772. }
  1773. void TextureStorage::_texture_format_from_rd(RD::DataFormat p_rd_format, TextureFromRDFormat &r_format) {
  1774. switch (p_rd_format) {
  1775. case RD::DATA_FORMAT_R8_UNORM: {
  1776. r_format.image_format = Image::FORMAT_L8;
  1777. r_format.rd_format = RD::DATA_FORMAT_R8_UNORM;
  1778. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1779. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_R;
  1780. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_R;
  1781. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1782. } break; //luminance
  1783. case RD::DATA_FORMAT_R8G8_UNORM: {
  1784. r_format.image_format = Image::FORMAT_LA8;
  1785. r_format.rd_format = RD::DATA_FORMAT_R8G8_UNORM;
  1786. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1787. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_R;
  1788. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_R;
  1789. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_G;
  1790. } break; //luminance-alpha
  1791. /* already maps to L8/LA8
  1792. case RD::DATA_FORMAT_R8_UNORM: {
  1793. r_format.image_format = Image::FORMAT_R8;
  1794. r_format.rd_format = RD::DATA_FORMAT_R8_UNORM;
  1795. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1796. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_ZERO;
  1797. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1798. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1799. } break;
  1800. case RD::DATA_FORMAT_R8G8_UNORM: {
  1801. r_format.image_format = Image::FORMAT_RG8;
  1802. r_format.rd_format = RD::DATA_FORMAT_R8G8_UNORM;
  1803. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1804. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1805. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1806. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1807. } break;
  1808. */
  1809. case RD::DATA_FORMAT_R8G8B8_UNORM:
  1810. case RD::DATA_FORMAT_R8G8B8_SRGB: {
  1811. r_format.image_format = Image::FORMAT_RGB8;
  1812. r_format.rd_format = RD::DATA_FORMAT_R8G8B8_UNORM;
  1813. r_format.rd_format_srgb = RD::DATA_FORMAT_R8G8B8_SRGB;
  1814. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1815. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1816. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1817. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1818. } break;
  1819. case RD::DATA_FORMAT_R8G8B8A8_UNORM:
  1820. case RD::DATA_FORMAT_R8G8B8A8_SRGB: {
  1821. r_format.image_format = Image::FORMAT_RGBA8;
  1822. r_format.rd_format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  1823. r_format.rd_format_srgb = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  1824. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1825. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1826. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1827. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1828. } break;
  1829. case RD::DATA_FORMAT_B4G4R4A4_UNORM_PACK16: {
  1830. r_format.image_format = Image::FORMAT_RGBA4444;
  1831. r_format.rd_format = RD::DATA_FORMAT_B4G4R4A4_UNORM_PACK16;
  1832. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_B; //needs swizzle
  1833. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1834. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_R;
  1835. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1836. } break;
  1837. case RD::DATA_FORMAT_B5G6R5_UNORM_PACK16: {
  1838. r_format.image_format = Image::FORMAT_RGB565;
  1839. r_format.rd_format = RD::DATA_FORMAT_B5G6R5_UNORM_PACK16;
  1840. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_B;
  1841. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1842. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_R;
  1843. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1844. } break;
  1845. case RD::DATA_FORMAT_R32_SFLOAT: {
  1846. r_format.image_format = Image::FORMAT_RF;
  1847. r_format.rd_format = RD::DATA_FORMAT_R32_SFLOAT;
  1848. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1849. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_ZERO;
  1850. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1851. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1852. } break; //float
  1853. case RD::DATA_FORMAT_R32G32_SFLOAT: {
  1854. r_format.image_format = Image::FORMAT_RGF;
  1855. r_format.rd_format = RD::DATA_FORMAT_R32G32_SFLOAT;
  1856. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1857. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1858. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1859. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1860. } break;
  1861. case RD::DATA_FORMAT_R32G32B32_SFLOAT: {
  1862. r_format.image_format = Image::FORMAT_RGBF;
  1863. r_format.rd_format = RD::DATA_FORMAT_R32G32B32_SFLOAT;
  1864. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1865. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1866. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1867. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1868. } break;
  1869. case RD::DATA_FORMAT_R32G32B32A32_SFLOAT: {
  1870. r_format.image_format = Image::FORMAT_RGBF;
  1871. r_format.rd_format = RD::DATA_FORMAT_R32G32B32A32_SFLOAT;
  1872. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1873. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1874. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1875. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1876. } break;
  1877. case RD::DATA_FORMAT_R16_SFLOAT: {
  1878. r_format.image_format = Image::FORMAT_RH;
  1879. r_format.rd_format = RD::DATA_FORMAT_R16_SFLOAT;
  1880. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1881. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_ZERO;
  1882. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1883. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1884. } break; //half float
  1885. case RD::DATA_FORMAT_R16G16_SFLOAT: {
  1886. r_format.image_format = Image::FORMAT_RGH;
  1887. r_format.rd_format = RD::DATA_FORMAT_R16G16_SFLOAT;
  1888. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1889. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1890. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1891. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1892. } break;
  1893. case RD::DATA_FORMAT_R16G16B16_SFLOAT: {
  1894. r_format.image_format = Image::FORMAT_RGBH;
  1895. r_format.rd_format = RD::DATA_FORMAT_R16G16B16_SFLOAT;
  1896. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1897. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1898. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1899. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1900. } break;
  1901. case RD::DATA_FORMAT_R16G16B16A16_SFLOAT: {
  1902. r_format.image_format = Image::FORMAT_RGBAH;
  1903. r_format.rd_format = RD::DATA_FORMAT_R16G16B16A16_SFLOAT;
  1904. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1905. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1906. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1907. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1908. } break;
  1909. case RD::DATA_FORMAT_E5B9G9R9_UFLOAT_PACK32: {
  1910. r_format.image_format = Image::FORMAT_RGBE9995;
  1911. r_format.rd_format = RD::DATA_FORMAT_E5B9G9R9_UFLOAT_PACK32;
  1912. // TODO: Need to make a function in Image to swap bits for this.
  1913. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_IDENTITY;
  1914. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_IDENTITY;
  1915. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_IDENTITY;
  1916. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_IDENTITY;
  1917. } break;
  1918. case RD::DATA_FORMAT_BC1_RGB_UNORM_BLOCK:
  1919. case RD::DATA_FORMAT_BC1_RGB_SRGB_BLOCK: {
  1920. r_format.image_format = Image::FORMAT_DXT1;
  1921. r_format.rd_format = RD::DATA_FORMAT_BC1_RGB_UNORM_BLOCK;
  1922. r_format.rd_format_srgb = RD::DATA_FORMAT_BC1_RGB_SRGB_BLOCK;
  1923. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1924. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1925. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1926. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1927. } break; //s3tc bc1
  1928. case RD::DATA_FORMAT_BC2_UNORM_BLOCK:
  1929. case RD::DATA_FORMAT_BC2_SRGB_BLOCK: {
  1930. r_format.image_format = Image::FORMAT_DXT3;
  1931. r_format.rd_format = RD::DATA_FORMAT_BC2_UNORM_BLOCK;
  1932. r_format.rd_format_srgb = RD::DATA_FORMAT_BC2_SRGB_BLOCK;
  1933. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1934. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1935. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1936. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1937. } break; //bc2
  1938. case RD::DATA_FORMAT_BC3_UNORM_BLOCK:
  1939. case RD::DATA_FORMAT_BC3_SRGB_BLOCK: {
  1940. r_format.image_format = Image::FORMAT_DXT5;
  1941. r_format.rd_format = RD::DATA_FORMAT_BC3_UNORM_BLOCK;
  1942. r_format.rd_format_srgb = RD::DATA_FORMAT_BC3_SRGB_BLOCK;
  1943. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1944. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1945. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1946. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1947. } break; //bc3
  1948. case RD::DATA_FORMAT_BC4_UNORM_BLOCK: {
  1949. r_format.image_format = Image::FORMAT_RGTC_R;
  1950. r_format.rd_format = RD::DATA_FORMAT_BC4_UNORM_BLOCK;
  1951. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1952. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_ZERO;
  1953. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1954. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1955. } break;
  1956. case RD::DATA_FORMAT_BC5_UNORM_BLOCK: {
  1957. r_format.image_format = Image::FORMAT_RGTC_RG;
  1958. r_format.rd_format = RD::DATA_FORMAT_BC5_UNORM_BLOCK;
  1959. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1960. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1961. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1962. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1963. } break;
  1964. case RD::DATA_FORMAT_BC7_UNORM_BLOCK:
  1965. case RD::DATA_FORMAT_BC7_SRGB_BLOCK: {
  1966. r_format.image_format = Image::FORMAT_BPTC_RGBA;
  1967. r_format.rd_format = RD::DATA_FORMAT_BC7_UNORM_BLOCK;
  1968. r_format.rd_format_srgb = RD::DATA_FORMAT_BC7_SRGB_BLOCK;
  1969. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1970. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1971. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1972. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  1973. } break; //btpc bc7
  1974. case RD::DATA_FORMAT_BC6H_SFLOAT_BLOCK: {
  1975. r_format.image_format = Image::FORMAT_BPTC_RGBF;
  1976. r_format.rd_format = RD::DATA_FORMAT_BC6H_SFLOAT_BLOCK;
  1977. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1978. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1979. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1980. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1981. } break; //float bc6h
  1982. case RD::DATA_FORMAT_BC6H_UFLOAT_BLOCK: {
  1983. r_format.image_format = Image::FORMAT_BPTC_RGBFU;
  1984. r_format.rd_format = RD::DATA_FORMAT_BC6H_UFLOAT_BLOCK;
  1985. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1986. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  1987. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  1988. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1989. } break; //unsigned float bc6hu
  1990. case RD::DATA_FORMAT_EAC_R11_UNORM_BLOCK: {
  1991. r_format.image_format = Image::FORMAT_ETC2_R11;
  1992. r_format.rd_format = RD::DATA_FORMAT_EAC_R11_UNORM_BLOCK;
  1993. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  1994. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_ZERO;
  1995. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  1996. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  1997. } break; //etc2
  1998. case RD::DATA_FORMAT_EAC_R11_SNORM_BLOCK: {
  1999. r_format.image_format = Image::FORMAT_ETC2_R11S;
  2000. r_format.rd_format = RD::DATA_FORMAT_EAC_R11_SNORM_BLOCK;
  2001. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  2002. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_ZERO;
  2003. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  2004. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  2005. } break; //signed: {} break; NOT srgb.
  2006. case RD::DATA_FORMAT_EAC_R11G11_UNORM_BLOCK: {
  2007. r_format.image_format = Image::FORMAT_ETC2_RG11;
  2008. r_format.rd_format = RD::DATA_FORMAT_EAC_R11G11_UNORM_BLOCK;
  2009. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  2010. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  2011. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  2012. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  2013. } break;
  2014. case RD::DATA_FORMAT_EAC_R11G11_SNORM_BLOCK: {
  2015. r_format.image_format = Image::FORMAT_ETC2_RG11S;
  2016. r_format.rd_format = RD::DATA_FORMAT_EAC_R11G11_SNORM_BLOCK;
  2017. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  2018. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  2019. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  2020. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  2021. } break;
  2022. case RD::DATA_FORMAT_ETC2_R8G8B8_UNORM_BLOCK:
  2023. case RD::DATA_FORMAT_ETC2_R8G8B8_SRGB_BLOCK: {
  2024. r_format.image_format = Image::FORMAT_ETC2_RGB8;
  2025. r_format.rd_format = RD::DATA_FORMAT_ETC2_R8G8B8_UNORM_BLOCK;
  2026. r_format.rd_format_srgb = RD::DATA_FORMAT_ETC2_R8G8B8_SRGB_BLOCK;
  2027. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  2028. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  2029. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  2030. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  2031. } break;
  2032. /* already maps to FORMAT_ETC2_RGBA8
  2033. case RD::DATA_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK:
  2034. case RD::DATA_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK: {
  2035. r_format.image_format = Image::FORMAT_ETC2_RGBA8;
  2036. r_format.rd_format = RD::DATA_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK;
  2037. r_format.rd_format_srgb = RD::DATA_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK;
  2038. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  2039. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  2040. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  2041. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  2042. } break;
  2043. */
  2044. case RD::DATA_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK:
  2045. case RD::DATA_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK: {
  2046. r_format.image_format = Image::FORMAT_ETC2_RGB8A1;
  2047. r_format.rd_format = RD::DATA_FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK;
  2048. r_format.rd_format_srgb = RD::DATA_FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK;
  2049. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  2050. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  2051. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  2052. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  2053. } break;
  2054. case RD::DATA_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK:
  2055. case RD::DATA_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK: {
  2056. r_format.image_format = Image::FORMAT_ETC2_RA_AS_RG;
  2057. r_format.rd_format = RD::DATA_FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK;
  2058. r_format.rd_format_srgb = RD::DATA_FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK;
  2059. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  2060. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_A;
  2061. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  2062. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  2063. } break;
  2064. /* already maps to FORMAT_DXT5
  2065. case RD::DATA_FORMAT_BC3_UNORM_BLOCK:
  2066. case RD::DATA_FORMAT_BC3_SRGB_BLOCK: {
  2067. r_format.image_format = Image::FORMAT_DXT5_RA_AS_RG;
  2068. r_format.rd_format = RD::DATA_FORMAT_BC3_UNORM_BLOCK;
  2069. r_format.rd_format_srgb = RD::DATA_FORMAT_BC3_SRGB_BLOCK;
  2070. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  2071. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_A;
  2072. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_ZERO;
  2073. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  2074. } break;
  2075. */
  2076. case RD::DATA_FORMAT_ASTC_4x4_UNORM_BLOCK: {
  2077. // Q: Do we do as we do below, just create the sRGB variant?
  2078. r_format.image_format = Image::FORMAT_ASTC_4x4;
  2079. r_format.rd_format = RD::DATA_FORMAT_ASTC_4x4_UNORM_BLOCK;
  2080. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  2081. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  2082. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  2083. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  2084. } break;
  2085. case RD::DATA_FORMAT_ASTC_4x4_SRGB_BLOCK: {
  2086. r_format.image_format = Image::FORMAT_ASTC_4x4_HDR;
  2087. r_format.rd_format = RD::DATA_FORMAT_ASTC_4x4_UNORM_BLOCK;
  2088. r_format.rd_format_srgb = RD::DATA_FORMAT_ASTC_4x4_SRGB_BLOCK;
  2089. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  2090. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  2091. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  2092. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  2093. } break; // astc 4x4
  2094. case RD::DATA_FORMAT_ASTC_8x8_UNORM_BLOCK: {
  2095. // Q: Do we do as we do below, just create the sRGB variant?
  2096. r_format.image_format = Image::FORMAT_ASTC_8x8;
  2097. r_format.rd_format = RD::DATA_FORMAT_ASTC_8x8_UNORM_BLOCK;
  2098. } break;
  2099. case RD::DATA_FORMAT_ASTC_8x8_SRGB_BLOCK: {
  2100. r_format.image_format = Image::FORMAT_ASTC_8x8_HDR;
  2101. r_format.rd_format = RD::DATA_FORMAT_ASTC_8x8_UNORM_BLOCK;
  2102. r_format.rd_format_srgb = RD::DATA_FORMAT_ASTC_8x8_SRGB_BLOCK;
  2103. r_format.swizzle_r = RD::TEXTURE_SWIZZLE_R;
  2104. r_format.swizzle_g = RD::TEXTURE_SWIZZLE_G;
  2105. r_format.swizzle_b = RD::TEXTURE_SWIZZLE_B;
  2106. r_format.swizzle_a = RD::TEXTURE_SWIZZLE_A;
  2107. } break; // astc 8x8
  2108. default: {
  2109. ERR_FAIL_MSG("Unsupported image format");
  2110. }
  2111. }
  2112. }
  2113. /* DECAL API */
  2114. RID TextureStorage::decal_atlas_get_texture() const {
  2115. return decal_atlas.texture;
  2116. }
  2117. RID TextureStorage::decal_atlas_get_texture_srgb() const {
  2118. return decal_atlas.texture_srgb;
  2119. }
  2120. RID TextureStorage::decal_allocate() {
  2121. return decal_owner.allocate_rid();
  2122. }
  2123. void TextureStorage::decal_initialize(RID p_decal) {
  2124. decal_owner.initialize_rid(p_decal, Decal());
  2125. }
  2126. void TextureStorage::decal_free(RID p_rid) {
  2127. Decal *decal = decal_owner.get_or_null(p_rid);
  2128. for (int i = 0; i < RS::DECAL_TEXTURE_MAX; i++) {
  2129. if (decal->textures[i].is_valid() && owns_texture(decal->textures[i])) {
  2130. texture_remove_from_decal_atlas(decal->textures[i]);
  2131. }
  2132. }
  2133. decal->dependency.deleted_notify(p_rid);
  2134. decal_owner.free(p_rid);
  2135. }
  2136. void TextureStorage::decal_set_size(RID p_decal, const Vector3 &p_size) {
  2137. Decal *decal = decal_owner.get_or_null(p_decal);
  2138. ERR_FAIL_NULL(decal);
  2139. decal->size = p_size;
  2140. decal->dependency.changed_notify(Dependency::DEPENDENCY_CHANGED_AABB);
  2141. }
  2142. void TextureStorage::decal_set_texture(RID p_decal, RS::DecalTexture p_type, RID p_texture) {
  2143. Decal *decal = decal_owner.get_or_null(p_decal);
  2144. ERR_FAIL_NULL(decal);
  2145. ERR_FAIL_INDEX(p_type, RS::DECAL_TEXTURE_MAX);
  2146. if (decal->textures[p_type] == p_texture) {
  2147. return;
  2148. }
  2149. ERR_FAIL_COND(p_texture.is_valid() && !owns_texture(p_texture));
  2150. if (decal->textures[p_type].is_valid() && owns_texture(decal->textures[p_type])) {
  2151. texture_remove_from_decal_atlas(decal->textures[p_type]);
  2152. }
  2153. decal->textures[p_type] = p_texture;
  2154. if (decal->textures[p_type].is_valid()) {
  2155. texture_add_to_decal_atlas(decal->textures[p_type]);
  2156. }
  2157. decal->dependency.changed_notify(Dependency::DEPENDENCY_CHANGED_DECAL);
  2158. }
  2159. void TextureStorage::decal_set_emission_energy(RID p_decal, float p_energy) {
  2160. Decal *decal = decal_owner.get_or_null(p_decal);
  2161. ERR_FAIL_NULL(decal);
  2162. decal->emission_energy = p_energy;
  2163. }
  2164. void TextureStorage::decal_set_albedo_mix(RID p_decal, float p_mix) {
  2165. Decal *decal = decal_owner.get_or_null(p_decal);
  2166. ERR_FAIL_NULL(decal);
  2167. decal->albedo_mix = p_mix;
  2168. }
  2169. void TextureStorage::decal_set_modulate(RID p_decal, const Color &p_modulate) {
  2170. Decal *decal = decal_owner.get_or_null(p_decal);
  2171. ERR_FAIL_NULL(decal);
  2172. decal->modulate = p_modulate;
  2173. }
  2174. void TextureStorage::decal_set_cull_mask(RID p_decal, uint32_t p_layers) {
  2175. Decal *decal = decal_owner.get_or_null(p_decal);
  2176. ERR_FAIL_NULL(decal);
  2177. decal->cull_mask = p_layers;
  2178. decal->dependency.changed_notify(Dependency::DEPENDENCY_CHANGED_DECAL);
  2179. }
  2180. void TextureStorage::decal_set_distance_fade(RID p_decal, bool p_enabled, float p_begin, float p_length) {
  2181. Decal *decal = decal_owner.get_or_null(p_decal);
  2182. ERR_FAIL_NULL(decal);
  2183. decal->distance_fade = p_enabled;
  2184. decal->distance_fade_begin = p_begin;
  2185. decal->distance_fade_length = p_length;
  2186. }
  2187. void TextureStorage::decal_set_fade(RID p_decal, float p_above, float p_below) {
  2188. Decal *decal = decal_owner.get_or_null(p_decal);
  2189. ERR_FAIL_NULL(decal);
  2190. decal->upper_fade = p_above;
  2191. decal->lower_fade = p_below;
  2192. }
  2193. void TextureStorage::decal_set_normal_fade(RID p_decal, float p_fade) {
  2194. Decal *decal = decal_owner.get_or_null(p_decal);
  2195. ERR_FAIL_NULL(decal);
  2196. decal->normal_fade = p_fade;
  2197. }
  2198. void TextureStorage::decal_atlas_mark_dirty_on_texture(RID p_texture) {
  2199. if (decal_atlas.textures.has(p_texture)) {
  2200. //belongs to decal atlas..
  2201. decal_atlas.dirty = true; //mark it dirty since it was most likely modified
  2202. }
  2203. }
  2204. void TextureStorage::decal_atlas_remove_texture(RID p_texture) {
  2205. if (decal_atlas.textures.has(p_texture)) {
  2206. decal_atlas.textures.erase(p_texture);
  2207. //there is not much a point of making it dirty, just let it be.
  2208. }
  2209. }
  2210. AABB TextureStorage::decal_get_aabb(RID p_decal) const {
  2211. Decal *decal = decal_owner.get_or_null(p_decal);
  2212. ERR_FAIL_NULL_V(decal, AABB());
  2213. return AABB(-decal->size / 2, decal->size);
  2214. }
  2215. uint32_t TextureStorage::decal_get_cull_mask(RID p_decal) const {
  2216. Decal *decal = decal_owner.get_or_null(p_decal);
  2217. ERR_FAIL_NULL_V(decal, 0);
  2218. return decal->cull_mask;
  2219. }
  2220. Dependency *TextureStorage::decal_get_dependency(RID p_decal) {
  2221. Decal *decal = decal_owner.get_or_null(p_decal);
  2222. ERR_FAIL_NULL_V(decal, nullptr);
  2223. return &decal->dependency;
  2224. }
  2225. void TextureStorage::update_decal_atlas() {
  2226. CopyEffects *copy_effects = CopyEffects::get_singleton();
  2227. ERR_FAIL_NULL(copy_effects);
  2228. if (!decal_atlas.dirty) {
  2229. return; //nothing to do
  2230. }
  2231. decal_atlas.dirty = false;
  2232. if (decal_atlas.texture.is_valid()) {
  2233. RD::get_singleton()->free(decal_atlas.texture);
  2234. decal_atlas.texture = RID();
  2235. decal_atlas.texture_srgb = RID();
  2236. decal_atlas.texture_mipmaps.clear();
  2237. }
  2238. int border = 1 << decal_atlas.mipmaps;
  2239. if (decal_atlas.textures.size()) {
  2240. //generate atlas
  2241. Vector<DecalAtlas::SortItem> itemsv;
  2242. itemsv.resize(decal_atlas.textures.size());
  2243. uint32_t base_size = 8;
  2244. int idx = 0;
  2245. for (const KeyValue<RID, DecalAtlas::Texture> &E : decal_atlas.textures) {
  2246. DecalAtlas::SortItem &si = itemsv.write[idx];
  2247. Texture *src_tex = get_texture(E.key);
  2248. si.size.width = (src_tex->width / border) + 1;
  2249. si.size.height = (src_tex->height / border) + 1;
  2250. si.pixel_size = Size2i(src_tex->width, src_tex->height);
  2251. if (base_size < (uint32_t)si.size.width) {
  2252. base_size = nearest_power_of_2_templated(si.size.width);
  2253. }
  2254. si.texture = E.key;
  2255. idx++;
  2256. }
  2257. //sort items by size
  2258. itemsv.sort();
  2259. //attempt to create atlas
  2260. int item_count = itemsv.size();
  2261. DecalAtlas::SortItem *items = itemsv.ptrw();
  2262. int atlas_height = 0;
  2263. while (true) {
  2264. Vector<int> v_offsetsv;
  2265. v_offsetsv.resize(base_size);
  2266. int *v_offsets = v_offsetsv.ptrw();
  2267. memset(v_offsets, 0, sizeof(int) * base_size);
  2268. int max_height = 0;
  2269. for (int i = 0; i < item_count; i++) {
  2270. //best fit
  2271. DecalAtlas::SortItem &si = items[i];
  2272. int best_idx = -1;
  2273. int best_height = 0x7FFFFFFF;
  2274. for (uint32_t j = 0; j <= base_size - si.size.width; j++) {
  2275. int height = 0;
  2276. for (int k = 0; k < si.size.width; k++) {
  2277. int h = v_offsets[k + j];
  2278. if (h > height) {
  2279. height = h;
  2280. if (height > best_height) {
  2281. break; //already bad
  2282. }
  2283. }
  2284. }
  2285. if (height < best_height) {
  2286. best_height = height;
  2287. best_idx = j;
  2288. }
  2289. }
  2290. //update
  2291. for (int k = 0; k < si.size.width; k++) {
  2292. v_offsets[k + best_idx] = best_height + si.size.height;
  2293. }
  2294. si.pos.x = best_idx;
  2295. si.pos.y = best_height;
  2296. if (si.pos.y + si.size.height > max_height) {
  2297. max_height = si.pos.y + si.size.height;
  2298. }
  2299. }
  2300. if ((uint32_t)max_height <= base_size * 2) {
  2301. atlas_height = max_height;
  2302. break; //good ratio, break;
  2303. }
  2304. base_size *= 2;
  2305. }
  2306. decal_atlas.size.width = base_size * border;
  2307. decal_atlas.size.height = nearest_power_of_2_templated(atlas_height * border);
  2308. for (int i = 0; i < item_count; i++) {
  2309. DecalAtlas::Texture *t = decal_atlas.textures.getptr(items[i].texture);
  2310. t->uv_rect.position = items[i].pos * border + Vector2i(border / 2, border / 2);
  2311. t->uv_rect.size = items[i].pixel_size;
  2312. t->uv_rect.position /= Size2(decal_atlas.size);
  2313. t->uv_rect.size /= Size2(decal_atlas.size);
  2314. }
  2315. } else {
  2316. //use border as size, so it at least has enough mipmaps
  2317. decal_atlas.size.width = border;
  2318. decal_atlas.size.height = border;
  2319. }
  2320. //blit textures
  2321. RD::TextureFormat tformat;
  2322. tformat.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  2323. tformat.width = decal_atlas.size.width;
  2324. tformat.height = decal_atlas.size.height;
  2325. tformat.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_COLOR_ATTACHMENT_BIT | RD::TEXTURE_USAGE_CAN_COPY_TO_BIT;
  2326. tformat.texture_type = RD::TEXTURE_TYPE_2D;
  2327. tformat.mipmaps = decal_atlas.mipmaps;
  2328. tformat.shareable_formats.push_back(RD::DATA_FORMAT_R8G8B8A8_UNORM);
  2329. tformat.shareable_formats.push_back(RD::DATA_FORMAT_R8G8B8A8_SRGB);
  2330. decal_atlas.texture = RD::get_singleton()->texture_create(tformat, RD::TextureView());
  2331. RD::get_singleton()->texture_clear(decal_atlas.texture, Color(0, 0, 0, 0), 0, decal_atlas.mipmaps, 0, 1);
  2332. {
  2333. //create the framebuffer
  2334. Size2i s = decal_atlas.size;
  2335. for (int i = 0; i < decal_atlas.mipmaps; i++) {
  2336. DecalAtlas::MipMap mm;
  2337. mm.texture = RD::get_singleton()->texture_create_shared_from_slice(RD::TextureView(), decal_atlas.texture, 0, i);
  2338. Vector<RID> fb;
  2339. fb.push_back(mm.texture);
  2340. mm.fb = RD::get_singleton()->framebuffer_create(fb);
  2341. mm.size = s;
  2342. decal_atlas.texture_mipmaps.push_back(mm);
  2343. s = Vector2i(s.width >> 1, s.height >> 1).maxi(1);
  2344. }
  2345. {
  2346. //create the SRGB variant
  2347. RD::TextureView rd_view;
  2348. rd_view.format_override = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  2349. decal_atlas.texture_srgb = RD::get_singleton()->texture_create_shared(rd_view, decal_atlas.texture);
  2350. }
  2351. }
  2352. RID prev_texture;
  2353. for (int i = 0; i < decal_atlas.texture_mipmaps.size(); i++) {
  2354. const DecalAtlas::MipMap &mm = decal_atlas.texture_mipmaps[i];
  2355. Color clear_color(0, 0, 0, 0);
  2356. if (decal_atlas.textures.size()) {
  2357. if (i == 0) {
  2358. Vector<Color> cc;
  2359. cc.push_back(clear_color);
  2360. RD::DrawListID draw_list = RD::get_singleton()->draw_list_begin(mm.fb, RD::INITIAL_ACTION_CLEAR, RD::FINAL_ACTION_STORE, RD::INITIAL_ACTION_DISCARD, RD::FINAL_ACTION_DISCARD, cc);
  2361. for (const KeyValue<RID, DecalAtlas::Texture> &E : decal_atlas.textures) {
  2362. DecalAtlas::Texture *t = decal_atlas.textures.getptr(E.key);
  2363. Texture *src_tex = get_texture(E.key);
  2364. copy_effects->copy_to_atlas_fb(src_tex->rd_texture, mm.fb, t->uv_rect, draw_list, false, t->panorama_to_dp_users > 0);
  2365. }
  2366. RD::get_singleton()->draw_list_end();
  2367. prev_texture = mm.texture;
  2368. } else {
  2369. copy_effects->copy_to_fb_rect(prev_texture, mm.fb, Rect2i(Point2i(), mm.size));
  2370. prev_texture = mm.texture;
  2371. }
  2372. } else {
  2373. RD::get_singleton()->texture_clear(mm.texture, clear_color, 0, 1, 0, 1);
  2374. }
  2375. }
  2376. }
  2377. void TextureStorage::texture_add_to_decal_atlas(RID p_texture, bool p_panorama_to_dp) {
  2378. if (!decal_atlas.textures.has(p_texture)) {
  2379. DecalAtlas::Texture t;
  2380. t.users = 1;
  2381. t.panorama_to_dp_users = p_panorama_to_dp ? 1 : 0;
  2382. decal_atlas.textures[p_texture] = t;
  2383. decal_atlas.dirty = true;
  2384. } else {
  2385. DecalAtlas::Texture *t = decal_atlas.textures.getptr(p_texture);
  2386. t->users++;
  2387. if (p_panorama_to_dp) {
  2388. t->panorama_to_dp_users++;
  2389. }
  2390. }
  2391. }
  2392. void TextureStorage::texture_remove_from_decal_atlas(RID p_texture, bool p_panorama_to_dp) {
  2393. DecalAtlas::Texture *t = decal_atlas.textures.getptr(p_texture);
  2394. ERR_FAIL_NULL(t);
  2395. t->users--;
  2396. if (p_panorama_to_dp) {
  2397. ERR_FAIL_COND(t->panorama_to_dp_users == 0);
  2398. t->panorama_to_dp_users--;
  2399. }
  2400. if (t->users == 0) {
  2401. decal_atlas.textures.erase(p_texture);
  2402. //do not mark it dirty, there is no need to since it remains working
  2403. }
  2404. }
  2405. /* DECAL INSTANCE API */
  2406. RID TextureStorage::decal_instance_create(RID p_decal) {
  2407. DecalInstance di;
  2408. di.decal = p_decal;
  2409. di.forward_id = ForwardIDStorage::get_singleton()->allocate_forward_id(FORWARD_ID_TYPE_DECAL);
  2410. return decal_instance_owner.make_rid(di);
  2411. }
  2412. void TextureStorage::decal_instance_free(RID p_decal_instance) {
  2413. DecalInstance *di = decal_instance_owner.get_or_null(p_decal_instance);
  2414. ForwardIDStorage::get_singleton()->free_forward_id(FORWARD_ID_TYPE_DECAL, di->forward_id);
  2415. decal_instance_owner.free(p_decal_instance);
  2416. }
  2417. void TextureStorage::decal_instance_set_transform(RID p_decal_instance, const Transform3D &p_transform) {
  2418. DecalInstance *di = decal_instance_owner.get_or_null(p_decal_instance);
  2419. ERR_FAIL_NULL(di);
  2420. di->transform = p_transform;
  2421. }
  2422. void TextureStorage::decal_instance_set_sorting_offset(RID p_decal_instance, float p_sorting_offset) {
  2423. DecalInstance *di = decal_instance_owner.get_or_null(p_decal_instance);
  2424. ERR_FAIL_NULL(di);
  2425. di->sorting_offset = p_sorting_offset;
  2426. }
  2427. /* DECAL DATA API */
  2428. void TextureStorage::free_decal_data() {
  2429. if (decal_buffer.is_valid()) {
  2430. RD::get_singleton()->free(decal_buffer);
  2431. decal_buffer = RID();
  2432. }
  2433. if (decals != nullptr) {
  2434. memdelete_arr(decals);
  2435. decals = nullptr;
  2436. }
  2437. if (decal_sort != nullptr) {
  2438. memdelete_arr(decal_sort);
  2439. decal_sort = nullptr;
  2440. }
  2441. }
  2442. void TextureStorage::set_max_decals(const uint32_t p_max_decals) {
  2443. max_decals = p_max_decals;
  2444. uint32_t decal_buffer_size = max_decals * sizeof(DecalData);
  2445. decals = memnew_arr(DecalData, max_decals);
  2446. decal_sort = memnew_arr(DecalInstanceSort, max_decals);
  2447. decal_buffer = RD::get_singleton()->storage_buffer_create(decal_buffer_size);
  2448. }
  2449. void TextureStorage::update_decal_buffer(const PagedArray<RID> &p_decals, const Transform3D &p_camera_xform) {
  2450. ForwardIDStorage *forward_id_storage = ForwardIDStorage::get_singleton();
  2451. Transform3D uv_xform;
  2452. uv_xform.basis.scale(Vector3(2.0, 1.0, 2.0));
  2453. uv_xform.origin = Vector3(-1.0, 0.0, -1.0);
  2454. uint32_t decals_size = p_decals.size();
  2455. decal_count = 0;
  2456. for (uint32_t i = 0; i < decals_size; i++) {
  2457. if (decal_count == max_decals) {
  2458. break;
  2459. }
  2460. DecalInstance *decal_instance = decal_instance_owner.get_or_null(p_decals[i]);
  2461. if (!decal_instance) {
  2462. continue;
  2463. }
  2464. Decal *decal = decal_owner.get_or_null(decal_instance->decal);
  2465. Transform3D xform = decal_instance->transform;
  2466. real_t distance = p_camera_xform.origin.distance_to(xform.origin);
  2467. if (decal->distance_fade) {
  2468. float fade_begin = decal->distance_fade_begin;
  2469. float fade_length = decal->distance_fade_length;
  2470. if (distance > fade_begin) {
  2471. if (distance > fade_begin + fade_length) {
  2472. continue; // do not use this decal, its invisible
  2473. }
  2474. }
  2475. }
  2476. decal_sort[decal_count].decal_instance = decal_instance;
  2477. decal_sort[decal_count].decal = decal;
  2478. decal_sort[decal_count].depth = distance - decal_instance->sorting_offset;
  2479. decal_count++;
  2480. }
  2481. if (decal_count > 0) {
  2482. SortArray<DecalInstanceSort> sort_array;
  2483. sort_array.sort(decal_sort, decal_count);
  2484. }
  2485. bool using_forward_ids = forward_id_storage->uses_forward_ids();
  2486. for (uint32_t i = 0; i < decal_count; i++) {
  2487. DecalInstance *decal_instance = decal_sort[i].decal_instance;
  2488. Decal *decal = decal_sort[i].decal;
  2489. if (using_forward_ids) {
  2490. forward_id_storage->map_forward_id(FORWARD_ID_TYPE_DECAL, decal_instance->forward_id, i, RSG::rasterizer->get_frame_number());
  2491. }
  2492. decal_instance->cull_mask = decal->cull_mask;
  2493. float fade = 1.0;
  2494. if (decal->distance_fade) {
  2495. const real_t distance = decal_sort[i].depth + decal_instance->sorting_offset;
  2496. const float fade_begin = decal->distance_fade_begin;
  2497. const float fade_length = decal->distance_fade_length;
  2498. if (distance > fade_begin) {
  2499. // Use `smoothstep()` to make opacity changes more gradual and less noticeable to the player.
  2500. fade = Math::smoothstep(0.0f, 1.0f, 1.0f - float(distance - fade_begin) / fade_length);
  2501. }
  2502. }
  2503. DecalData &dd = decals[i];
  2504. Vector3 decal_extents = decal->size / 2;
  2505. Transform3D scale_xform;
  2506. scale_xform.basis.scale(decal_extents);
  2507. Transform3D xform = decal_instance->transform;
  2508. Transform3D camera_inverse_xform = p_camera_xform.affine_inverse();
  2509. Transform3D to_decal_xform = (camera_inverse_xform * xform * scale_xform * uv_xform).affine_inverse();
  2510. MaterialStorage::store_transform(to_decal_xform, dd.xform);
  2511. Vector3 normal = xform.basis.get_column(Vector3::AXIS_Y).normalized();
  2512. normal = camera_inverse_xform.basis.xform(normal); //camera is normalized, so fine
  2513. dd.normal[0] = normal.x;
  2514. dd.normal[1] = normal.y;
  2515. dd.normal[2] = normal.z;
  2516. dd.normal_fade = decal->normal_fade;
  2517. RID albedo_tex = decal->textures[RS::DECAL_TEXTURE_ALBEDO];
  2518. RID emission_tex = decal->textures[RS::DECAL_TEXTURE_EMISSION];
  2519. if (albedo_tex.is_valid()) {
  2520. Rect2 rect = decal_atlas_get_texture_rect(albedo_tex);
  2521. dd.albedo_rect[0] = rect.position.x;
  2522. dd.albedo_rect[1] = rect.position.y;
  2523. dd.albedo_rect[2] = rect.size.x;
  2524. dd.albedo_rect[3] = rect.size.y;
  2525. } else {
  2526. if (!emission_tex.is_valid()) {
  2527. continue; //no albedo, no emission, no decal.
  2528. }
  2529. dd.albedo_rect[0] = 0;
  2530. dd.albedo_rect[1] = 0;
  2531. dd.albedo_rect[2] = 0;
  2532. dd.albedo_rect[3] = 0;
  2533. }
  2534. RID normal_tex = decal->textures[RS::DECAL_TEXTURE_NORMAL];
  2535. if (normal_tex.is_valid()) {
  2536. Rect2 rect = decal_atlas_get_texture_rect(normal_tex);
  2537. dd.normal_rect[0] = rect.position.x;
  2538. dd.normal_rect[1] = rect.position.y;
  2539. dd.normal_rect[2] = rect.size.x;
  2540. dd.normal_rect[3] = rect.size.y;
  2541. Basis normal_xform = camera_inverse_xform.basis * xform.basis.orthonormalized();
  2542. MaterialStorage::store_basis_3x4(normal_xform, dd.normal_xform);
  2543. } else {
  2544. dd.normal_rect[0] = 0;
  2545. dd.normal_rect[1] = 0;
  2546. dd.normal_rect[2] = 0;
  2547. dd.normal_rect[3] = 0;
  2548. }
  2549. RID orm_tex = decal->textures[RS::DECAL_TEXTURE_ORM];
  2550. if (orm_tex.is_valid()) {
  2551. Rect2 rect = decal_atlas_get_texture_rect(orm_tex);
  2552. dd.orm_rect[0] = rect.position.x;
  2553. dd.orm_rect[1] = rect.position.y;
  2554. dd.orm_rect[2] = rect.size.x;
  2555. dd.orm_rect[3] = rect.size.y;
  2556. } else {
  2557. dd.orm_rect[0] = 0;
  2558. dd.orm_rect[1] = 0;
  2559. dd.orm_rect[2] = 0;
  2560. dd.orm_rect[3] = 0;
  2561. }
  2562. if (emission_tex.is_valid()) {
  2563. Rect2 rect = decal_atlas_get_texture_rect(emission_tex);
  2564. dd.emission_rect[0] = rect.position.x;
  2565. dd.emission_rect[1] = rect.position.y;
  2566. dd.emission_rect[2] = rect.size.x;
  2567. dd.emission_rect[3] = rect.size.y;
  2568. } else {
  2569. dd.emission_rect[0] = 0;
  2570. dd.emission_rect[1] = 0;
  2571. dd.emission_rect[2] = 0;
  2572. dd.emission_rect[3] = 0;
  2573. }
  2574. Color modulate = decal->modulate.srgb_to_linear();
  2575. dd.modulate[0] = modulate.r;
  2576. dd.modulate[1] = modulate.g;
  2577. dd.modulate[2] = modulate.b;
  2578. dd.modulate[3] = modulate.a * fade;
  2579. dd.emission_energy = decal->emission_energy * fade;
  2580. dd.albedo_mix = decal->albedo_mix;
  2581. dd.mask = decal->cull_mask;
  2582. dd.upper_fade = decal->upper_fade;
  2583. dd.lower_fade = decal->lower_fade;
  2584. // hook for subclass to do further processing.
  2585. RendererSceneRenderRD::get_singleton()->setup_added_decal(xform, decal_extents);
  2586. }
  2587. if (decal_count > 0) {
  2588. RD::get_singleton()->buffer_update(decal_buffer, 0, sizeof(DecalData) * decal_count, decals);
  2589. }
  2590. }
  2591. /* RENDER TARGET API */
  2592. RID TextureStorage::RenderTarget::get_framebuffer() {
  2593. // Note that if we're using an overridden color buffer, we're likely cycling through a texture chain.
  2594. // this is where our framebuffer cache comes in clutch..
  2595. if (msaa != RS::VIEWPORT_MSAA_DISABLED) {
  2596. return FramebufferCacheRD::get_singleton()->get_cache_multiview(view_count, color_multisample, overridden.color.is_valid() ? overridden.color : color);
  2597. } else {
  2598. return FramebufferCacheRD::get_singleton()->get_cache_multiview(view_count, overridden.color.is_valid() ? overridden.color : color);
  2599. }
  2600. }
  2601. void TextureStorage::_clear_render_target(RenderTarget *rt) {
  2602. // clear overrides, we assume these are freed by the object that created them
  2603. rt->overridden.color = RID();
  2604. rt->overridden.depth = RID();
  2605. rt->overridden.velocity = RID();
  2606. rt->overridden.cached_slices.clear(); // these are automatically freed when their parent textures are freed so just clear
  2607. // free in reverse dependency order
  2608. if (rt->framebuffer_uniform_set.is_valid()) {
  2609. rt->framebuffer_uniform_set = RID(); //chain deleted
  2610. }
  2611. if (rt->color.is_valid()) {
  2612. RD::get_singleton()->free(rt->color);
  2613. }
  2614. rt->color_slices.clear(); // these are automatically freed.
  2615. if (rt->color_multisample.is_valid()) {
  2616. RD::get_singleton()->free(rt->color_multisample);
  2617. }
  2618. if (rt->backbuffer.is_valid()) {
  2619. RD::get_singleton()->free(rt->backbuffer);
  2620. rt->backbuffer = RID();
  2621. rt->backbuffer_mipmaps.clear();
  2622. rt->backbuffer_uniform_set = RID(); //chain deleted
  2623. }
  2624. _render_target_clear_sdf(rt);
  2625. rt->color = RID();
  2626. rt->color_multisample = RID();
  2627. if (rt->texture.is_valid()) {
  2628. Texture *tex = get_texture(rt->texture);
  2629. tex->render_target = nullptr;
  2630. }
  2631. }
  2632. void TextureStorage::_update_render_target(RenderTarget *rt) {
  2633. if (rt->texture.is_null()) {
  2634. //create a placeholder until updated
  2635. rt->texture = texture_allocate();
  2636. texture_2d_placeholder_initialize(rt->texture);
  2637. Texture *tex = get_texture(rt->texture);
  2638. tex->is_render_target = true;
  2639. tex->path = "Render Target (Internal)";
  2640. }
  2641. _clear_render_target(rt);
  2642. if (rt->size.width == 0 || rt->size.height == 0) {
  2643. return;
  2644. }
  2645. if (rt->use_hdr) {
  2646. rt->color_format = RendererSceneRenderRD::get_singleton()->_render_buffers_get_color_format();
  2647. rt->color_format_srgb = rt->color_format;
  2648. rt->image_format = rt->is_transparent ? Image::FORMAT_RGBAH : Image::FORMAT_RGBH;
  2649. } else {
  2650. rt->color_format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  2651. rt->color_format_srgb = RD::DATA_FORMAT_R8G8B8A8_SRGB;
  2652. rt->image_format = rt->is_transparent ? Image::FORMAT_RGBA8 : Image::FORMAT_RGB8;
  2653. }
  2654. RD::TextureFormat rd_color_attachment_format;
  2655. RD::TextureView rd_view;
  2656. { //attempt register
  2657. rd_color_attachment_format.format = rt->color_format;
  2658. rd_color_attachment_format.width = rt->size.width;
  2659. rd_color_attachment_format.height = rt->size.height;
  2660. rd_color_attachment_format.depth = 1;
  2661. rd_color_attachment_format.array_layers = rt->view_count; // for stereo we create two (or more) layers, need to see if we can make fallback work like this too if we don't have multiview
  2662. rd_color_attachment_format.mipmaps = 1;
  2663. if (rd_color_attachment_format.array_layers > 1) { // why are we not using rt->texture_type ??
  2664. rd_color_attachment_format.texture_type = RD::TEXTURE_TYPE_2D_ARRAY;
  2665. } else {
  2666. rd_color_attachment_format.texture_type = RD::TEXTURE_TYPE_2D;
  2667. }
  2668. rd_color_attachment_format.samples = RD::TEXTURE_SAMPLES_1;
  2669. rd_color_attachment_format.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_COLOR_ATTACHMENT_BIT | RD::TEXTURE_USAGE_CAN_COPY_FROM_BIT;
  2670. rd_color_attachment_format.usage_bits |= RD::TEXTURE_USAGE_STORAGE_BIT; // FIXME we need this only when FSR is enabled
  2671. rd_color_attachment_format.shareable_formats.push_back(rt->color_format);
  2672. rd_color_attachment_format.shareable_formats.push_back(rt->color_format_srgb);
  2673. if (rt->msaa != RS::VIEWPORT_MSAA_DISABLED) {
  2674. rd_color_attachment_format.is_resolve_buffer = true;
  2675. }
  2676. }
  2677. // TODO see if we can lazy create this once we actually use it as we may not need to create this if we have an overridden color buffer...
  2678. rt->color = RD::get_singleton()->texture_create(rd_color_attachment_format, rd_view);
  2679. ERR_FAIL_COND(rt->color.is_null());
  2680. if (rt->msaa != RS::VIEWPORT_MSAA_DISABLED) {
  2681. // Use the texture format of the color attachment for the multisample color attachment.
  2682. RD::TextureFormat rd_color_multisample_format = rd_color_attachment_format;
  2683. const RD::TextureSamples texture_samples[RS::VIEWPORT_MSAA_MAX] = {
  2684. RD::TEXTURE_SAMPLES_1,
  2685. RD::TEXTURE_SAMPLES_2,
  2686. RD::TEXTURE_SAMPLES_4,
  2687. RD::TEXTURE_SAMPLES_8,
  2688. };
  2689. rd_color_multisample_format.samples = texture_samples[rt->msaa];
  2690. rd_color_multisample_format.usage_bits = RD::TEXTURE_USAGE_COLOR_ATTACHMENT_BIT;
  2691. RD::TextureView rd_view_multisample;
  2692. rd_color_multisample_format.is_resolve_buffer = false;
  2693. rt->color_multisample = RD::get_singleton()->texture_create(rd_color_multisample_format, rd_view_multisample);
  2694. ERR_FAIL_COND(rt->color_multisample.is_null());
  2695. }
  2696. { //update texture
  2697. Texture *tex = get_texture(rt->texture);
  2698. //free existing textures
  2699. if (RD::get_singleton()->texture_is_valid(tex->rd_texture)) {
  2700. RD::get_singleton()->free(tex->rd_texture);
  2701. }
  2702. if (RD::get_singleton()->texture_is_valid(tex->rd_texture_srgb)) {
  2703. RD::get_singleton()->free(tex->rd_texture_srgb);
  2704. }
  2705. tex->rd_texture = RID();
  2706. tex->rd_texture_srgb = RID();
  2707. tex->render_target = rt;
  2708. //create shared textures to the color buffer,
  2709. //so transparent can be supported
  2710. RD::TextureView view;
  2711. view.format_override = rt->color_format;
  2712. if (!rt->is_transparent) {
  2713. view.swizzle_a = RD::TEXTURE_SWIZZLE_ONE;
  2714. }
  2715. tex->rd_texture = RD::get_singleton()->texture_create_shared(view, rt->color);
  2716. if (rt->color_format_srgb != RD::DATA_FORMAT_MAX) {
  2717. view.format_override = rt->color_format_srgb;
  2718. tex->rd_texture_srgb = RD::get_singleton()->texture_create_shared(view, rt->color);
  2719. }
  2720. tex->rd_view = view;
  2721. tex->width = rt->size.width;
  2722. tex->height = rt->size.height;
  2723. tex->width_2d = rt->size.width;
  2724. tex->height_2d = rt->size.height;
  2725. tex->rd_format = rt->color_format;
  2726. tex->rd_format_srgb = rt->color_format_srgb;
  2727. tex->format = rt->image_format;
  2728. tex->validated_format = rt->use_hdr ? Image::FORMAT_RGBAH : Image::FORMAT_RGBA8;
  2729. Vector<RID> proxies = tex->proxies; //make a copy, since update may change it
  2730. for (int i = 0; i < proxies.size(); i++) {
  2731. texture_proxy_update(proxies[i], rt->texture);
  2732. }
  2733. }
  2734. }
  2735. void TextureStorage::_create_render_target_backbuffer(RenderTarget *rt) {
  2736. ERR_FAIL_COND(rt->backbuffer.is_valid());
  2737. uint32_t mipmaps_required = Image::get_image_required_mipmaps(rt->size.width, rt->size.height, Image::FORMAT_RGBA8);
  2738. RD::TextureFormat tf;
  2739. tf.format = rt->color_format;
  2740. tf.width = rt->size.width;
  2741. tf.height = rt->size.height;
  2742. tf.texture_type = RD::TEXTURE_TYPE_2D;
  2743. tf.usage_bits = RD::TEXTURE_USAGE_COLOR_ATTACHMENT_BIT | RD::TEXTURE_USAGE_STORAGE_BIT | RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_CAN_COPY_TO_BIT;
  2744. tf.mipmaps = mipmaps_required;
  2745. rt->backbuffer = RD::get_singleton()->texture_create(tf, RD::TextureView());
  2746. RD::get_singleton()->set_resource_name(rt->backbuffer, "Render Target Back Buffer");
  2747. rt->backbuffer_mipmap0 = RD::get_singleton()->texture_create_shared_from_slice(RD::TextureView(), rt->backbuffer, 0, 0);
  2748. RD::get_singleton()->set_resource_name(rt->backbuffer_mipmap0, "Back Buffer slice mipmap 0");
  2749. {
  2750. Vector<RID> fb_tex;
  2751. fb_tex.push_back(rt->backbuffer_mipmap0);
  2752. rt->backbuffer_fb = RD::get_singleton()->framebuffer_create(fb_tex);
  2753. }
  2754. if (rt->framebuffer_uniform_set.is_valid() && RD::get_singleton()->uniform_set_is_valid(rt->framebuffer_uniform_set)) {
  2755. //the new one will require the backbuffer.
  2756. RD::get_singleton()->free(rt->framebuffer_uniform_set);
  2757. rt->framebuffer_uniform_set = RID();
  2758. }
  2759. //create mipmaps
  2760. for (uint32_t i = 1; i < mipmaps_required; i++) {
  2761. RID mipmap = RD::get_singleton()->texture_create_shared_from_slice(RD::TextureView(), rt->backbuffer, 0, i);
  2762. RD::get_singleton()->set_resource_name(mipmap, "Back Buffer slice mip: " + itos(i));
  2763. rt->backbuffer_mipmaps.push_back(mipmap);
  2764. }
  2765. }
  2766. RID TextureStorage::render_target_create() {
  2767. RenderTarget render_target;
  2768. render_target.was_used = false;
  2769. render_target.clear_requested = false;
  2770. _update_render_target(&render_target);
  2771. return render_target_owner.make_rid(render_target);
  2772. }
  2773. void TextureStorage::render_target_free(RID p_rid) {
  2774. RenderTarget *rt = render_target_owner.get_or_null(p_rid);
  2775. _clear_render_target(rt);
  2776. if (rt->texture.is_valid()) {
  2777. Texture *tex = get_texture(rt->texture);
  2778. tex->is_render_target = false;
  2779. texture_free(rt->texture);
  2780. }
  2781. render_target_owner.free(p_rid);
  2782. }
  2783. void TextureStorage::render_target_set_position(RID p_render_target, int p_x, int p_y) {
  2784. //unused for this render target
  2785. }
  2786. Point2i TextureStorage::render_target_get_position(RID p_render_target) const {
  2787. //unused for this render target
  2788. return Point2i();
  2789. }
  2790. void TextureStorage::render_target_set_size(RID p_render_target, int p_width, int p_height, uint32_t p_view_count) {
  2791. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2792. ERR_FAIL_NULL(rt);
  2793. if (rt->size.x != p_width || rt->size.y != p_height || rt->view_count != p_view_count) {
  2794. rt->size.x = p_width;
  2795. rt->size.y = p_height;
  2796. rt->view_count = p_view_count;
  2797. _update_render_target(rt);
  2798. }
  2799. }
  2800. Size2i TextureStorage::render_target_get_size(RID p_render_target) const {
  2801. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2802. ERR_FAIL_NULL_V(rt, Size2i());
  2803. return rt->size;
  2804. }
  2805. RID TextureStorage::render_target_get_texture(RID p_render_target) {
  2806. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2807. ERR_FAIL_NULL_V(rt, RID());
  2808. return rt->texture;
  2809. }
  2810. void TextureStorage::render_target_set_override(RID p_render_target, RID p_color_texture, RID p_depth_texture, RID p_velocity_texture) {
  2811. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2812. ERR_FAIL_NULL(rt);
  2813. rt->overridden.color = p_color_texture;
  2814. rt->overridden.depth = p_depth_texture;
  2815. rt->overridden.velocity = p_velocity_texture;
  2816. }
  2817. RID TextureStorage::render_target_get_override_color(RID p_render_target) const {
  2818. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2819. ERR_FAIL_NULL_V(rt, RID());
  2820. return rt->overridden.color;
  2821. }
  2822. RID TextureStorage::render_target_get_override_depth(RID p_render_target) const {
  2823. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2824. ERR_FAIL_NULL_V(rt, RID());
  2825. return rt->overridden.depth;
  2826. }
  2827. RID TextureStorage::render_target_get_override_depth_slice(RID p_render_target, const uint32_t p_layer) const {
  2828. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2829. ERR_FAIL_NULL_V(rt, RID());
  2830. if (rt->overridden.depth.is_null()) {
  2831. return RID();
  2832. } else if (rt->view_count == 1) {
  2833. return rt->overridden.depth;
  2834. } else {
  2835. RenderTarget::RTOverridden::SliceKey key(rt->overridden.depth, p_layer);
  2836. if (!rt->overridden.cached_slices.has(key)) {
  2837. rt->overridden.cached_slices[key] = RD::get_singleton()->texture_create_shared_from_slice(RD::TextureView(), rt->overridden.depth, p_layer, 0);
  2838. }
  2839. return rt->overridden.cached_slices[key];
  2840. }
  2841. }
  2842. RID TextureStorage::render_target_get_override_velocity(RID p_render_target) const {
  2843. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2844. ERR_FAIL_NULL_V(rt, RID());
  2845. return rt->overridden.velocity;
  2846. }
  2847. RID TextureStorage::render_target_get_override_velocity_slice(RID p_render_target, const uint32_t p_layer) const {
  2848. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2849. ERR_FAIL_NULL_V(rt, RID());
  2850. if (rt->overridden.velocity.is_null()) {
  2851. return RID();
  2852. } else if (rt->view_count == 1) {
  2853. return rt->overridden.velocity;
  2854. } else {
  2855. RenderTarget::RTOverridden::SliceKey key(rt->overridden.velocity, p_layer);
  2856. if (!rt->overridden.cached_slices.has(key)) {
  2857. rt->overridden.cached_slices[key] = RD::get_singleton()->texture_create_shared_from_slice(RD::TextureView(), rt->overridden.velocity, p_layer, 0);
  2858. }
  2859. return rt->overridden.cached_slices[key];
  2860. }
  2861. }
  2862. void TextureStorage::render_target_set_transparent(RID p_render_target, bool p_is_transparent) {
  2863. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2864. ERR_FAIL_NULL(rt);
  2865. rt->is_transparent = p_is_transparent;
  2866. _update_render_target(rt);
  2867. }
  2868. bool TextureStorage::render_target_get_transparent(RID p_render_target) const {
  2869. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2870. ERR_FAIL_NULL_V(rt, false);
  2871. return rt->is_transparent;
  2872. }
  2873. void TextureStorage::render_target_set_direct_to_screen(RID p_render_target, bool p_value) {
  2874. }
  2875. bool TextureStorage::render_target_get_direct_to_screen(RID p_render_target) const {
  2876. return false;
  2877. }
  2878. bool TextureStorage::render_target_was_used(RID p_render_target) const {
  2879. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2880. ERR_FAIL_NULL_V(rt, false);
  2881. return rt->was_used;
  2882. }
  2883. void TextureStorage::render_target_set_as_unused(RID p_render_target) {
  2884. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2885. ERR_FAIL_NULL(rt);
  2886. rt->was_used = false;
  2887. }
  2888. void TextureStorage::render_target_set_msaa(RID p_render_target, RS::ViewportMSAA p_msaa) {
  2889. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2890. ERR_FAIL_NULL(rt);
  2891. if (p_msaa == rt->msaa) {
  2892. return;
  2893. }
  2894. rt->msaa = p_msaa;
  2895. _update_render_target(rt);
  2896. }
  2897. RS::ViewportMSAA TextureStorage::render_target_get_msaa(RID p_render_target) const {
  2898. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2899. ERR_FAIL_NULL_V(rt, RS::VIEWPORT_MSAA_DISABLED);
  2900. return rt->msaa;
  2901. }
  2902. void TextureStorage::render_target_set_msaa_needs_resolve(RID p_render_target, bool p_needs_resolve) {
  2903. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2904. ERR_FAIL_NULL(rt);
  2905. rt->msaa_needs_resolve = p_needs_resolve;
  2906. }
  2907. bool TextureStorage::render_target_get_msaa_needs_resolve(RID p_render_target) const {
  2908. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2909. ERR_FAIL_NULL_V(rt, false);
  2910. return rt->msaa_needs_resolve;
  2911. }
  2912. void TextureStorage::render_target_do_msaa_resolve(RID p_render_target) {
  2913. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2914. ERR_FAIL_NULL(rt);
  2915. if (!rt->msaa_needs_resolve) {
  2916. return;
  2917. }
  2918. RD::get_singleton()->draw_list_begin(rt->get_framebuffer(), RD::INITIAL_ACTION_LOAD, RD::FINAL_ACTION_STORE, RD::INITIAL_ACTION_LOAD, RD::FINAL_ACTION_DISCARD);
  2919. RD::get_singleton()->draw_list_end();
  2920. rt->msaa_needs_resolve = false;
  2921. }
  2922. void TextureStorage::render_target_set_use_hdr(RID p_render_target, bool p_use_hdr) {
  2923. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2924. ERR_FAIL_NULL(rt);
  2925. if (p_use_hdr == rt->use_hdr) {
  2926. return;
  2927. }
  2928. rt->use_hdr = p_use_hdr;
  2929. _update_render_target(rt);
  2930. }
  2931. bool TextureStorage::render_target_is_using_hdr(RID p_render_target) const {
  2932. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2933. ERR_FAIL_NULL_V(rt, false);
  2934. return rt->use_hdr;
  2935. }
  2936. RID TextureStorage::render_target_get_rd_framebuffer(RID p_render_target) {
  2937. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2938. ERR_FAIL_NULL_V(rt, RID());
  2939. return rt->get_framebuffer();
  2940. }
  2941. RID TextureStorage::render_target_get_rd_texture(RID p_render_target) {
  2942. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2943. ERR_FAIL_NULL_V(rt, RID());
  2944. if (rt->overridden.color.is_valid()) {
  2945. return rt->overridden.color;
  2946. } else {
  2947. return rt->color;
  2948. }
  2949. }
  2950. RID TextureStorage::render_target_get_rd_texture_slice(RID p_render_target, uint32_t p_layer) {
  2951. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2952. ERR_FAIL_NULL_V(rt, RID());
  2953. if (rt->view_count == 1) {
  2954. return rt->color;
  2955. } else {
  2956. ERR_FAIL_UNSIGNED_INDEX_V(p_layer, rt->view_count, RID());
  2957. if (rt->color_slices.size() == 0) {
  2958. for (uint32_t v = 0; v < rt->view_count; v++) {
  2959. RID slice = RD::get_singleton()->texture_create_shared_from_slice(RD::TextureView(), rt->color, v, 0);
  2960. rt->color_slices.push_back(slice);
  2961. }
  2962. }
  2963. return rt->color_slices[p_layer];
  2964. }
  2965. }
  2966. RID TextureStorage::render_target_get_rd_texture_msaa(RID p_render_target) {
  2967. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2968. ERR_FAIL_NULL_V(rt, RID());
  2969. return rt->color_multisample;
  2970. }
  2971. RID TextureStorage::render_target_get_rd_backbuffer(RID p_render_target) {
  2972. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2973. ERR_FAIL_NULL_V(rt, RID());
  2974. return rt->backbuffer;
  2975. }
  2976. RID TextureStorage::render_target_get_rd_backbuffer_framebuffer(RID p_render_target) {
  2977. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2978. ERR_FAIL_NULL_V(rt, RID());
  2979. if (!rt->backbuffer.is_valid()) {
  2980. _create_render_target_backbuffer(rt);
  2981. }
  2982. return rt->backbuffer_fb;
  2983. }
  2984. void TextureStorage::render_target_request_clear(RID p_render_target, const Color &p_clear_color) {
  2985. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2986. ERR_FAIL_NULL(rt);
  2987. rt->clear_requested = true;
  2988. rt->clear_color = p_clear_color;
  2989. }
  2990. bool TextureStorage::render_target_is_clear_requested(RID p_render_target) {
  2991. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2992. ERR_FAIL_NULL_V(rt, false);
  2993. return rt->clear_requested;
  2994. }
  2995. Color TextureStorage::render_target_get_clear_request_color(RID p_render_target) {
  2996. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  2997. ERR_FAIL_NULL_V(rt, Color());
  2998. return rt->use_hdr ? rt->clear_color.srgb_to_linear() : rt->clear_color;
  2999. }
  3000. void TextureStorage::render_target_disable_clear_request(RID p_render_target) {
  3001. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3002. ERR_FAIL_NULL(rt);
  3003. rt->clear_requested = false;
  3004. }
  3005. void TextureStorage::render_target_do_clear_request(RID p_render_target) {
  3006. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3007. ERR_FAIL_NULL(rt);
  3008. if (!rt->clear_requested) {
  3009. return;
  3010. }
  3011. Vector<Color> clear_colors;
  3012. clear_colors.push_back(rt->use_hdr ? rt->clear_color.srgb_to_linear() : rt->clear_color);
  3013. RD::get_singleton()->draw_list_begin(rt->get_framebuffer(), RD::INITIAL_ACTION_CLEAR, RD::FINAL_ACTION_STORE, RD::INITIAL_ACTION_LOAD, RD::FINAL_ACTION_DISCARD, clear_colors);
  3014. RD::get_singleton()->draw_list_end();
  3015. rt->clear_requested = false;
  3016. rt->msaa_needs_resolve = false;
  3017. }
  3018. void TextureStorage::render_target_set_sdf_size_and_scale(RID p_render_target, RS::ViewportSDFOversize p_size, RS::ViewportSDFScale p_scale) {
  3019. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3020. ERR_FAIL_NULL(rt);
  3021. if (rt->sdf_oversize == p_size && rt->sdf_scale == p_scale) {
  3022. return;
  3023. }
  3024. rt->sdf_oversize = p_size;
  3025. rt->sdf_scale = p_scale;
  3026. _render_target_clear_sdf(rt);
  3027. }
  3028. Rect2i TextureStorage::_render_target_get_sdf_rect(const RenderTarget *rt) const {
  3029. Size2i margin;
  3030. int scale;
  3031. switch (rt->sdf_oversize) {
  3032. case RS::VIEWPORT_SDF_OVERSIZE_100_PERCENT: {
  3033. scale = 100;
  3034. } break;
  3035. case RS::VIEWPORT_SDF_OVERSIZE_120_PERCENT: {
  3036. scale = 120;
  3037. } break;
  3038. case RS::VIEWPORT_SDF_OVERSIZE_150_PERCENT: {
  3039. scale = 150;
  3040. } break;
  3041. case RS::VIEWPORT_SDF_OVERSIZE_200_PERCENT: {
  3042. scale = 200;
  3043. } break;
  3044. default: {
  3045. ERR_PRINT("Invalid viewport SDF oversize, defaulting to 100%.");
  3046. scale = 100;
  3047. } break;
  3048. }
  3049. margin = (rt->size * scale / 100) - rt->size;
  3050. Rect2i r(Vector2i(), rt->size);
  3051. r.position -= margin;
  3052. r.size += margin * 2;
  3053. return r;
  3054. }
  3055. Rect2i TextureStorage::render_target_get_sdf_rect(RID p_render_target) const {
  3056. const RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3057. ERR_FAIL_NULL_V(rt, Rect2i());
  3058. return _render_target_get_sdf_rect(rt);
  3059. }
  3060. void TextureStorage::render_target_mark_sdf_enabled(RID p_render_target, bool p_enabled) {
  3061. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3062. ERR_FAIL_NULL(rt);
  3063. rt->sdf_enabled = p_enabled;
  3064. }
  3065. bool TextureStorage::render_target_is_sdf_enabled(RID p_render_target) const {
  3066. const RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3067. ERR_FAIL_NULL_V(rt, false);
  3068. return rt->sdf_enabled;
  3069. }
  3070. RID TextureStorage::render_target_get_sdf_texture(RID p_render_target) {
  3071. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3072. ERR_FAIL_NULL_V(rt, RID());
  3073. if (rt->sdf_buffer_read.is_null()) {
  3074. // no texture, create a dummy one for the 2D uniform set
  3075. RD::TextureFormat tformat;
  3076. tformat.format = RD::DATA_FORMAT_R8G8B8A8_UNORM;
  3077. tformat.width = 4;
  3078. tformat.height = 4;
  3079. tformat.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT;
  3080. tformat.texture_type = RD::TEXTURE_TYPE_2D;
  3081. Vector<uint8_t> pv;
  3082. pv.resize(16 * 4);
  3083. memset(pv.ptrw(), 0, 16 * 4);
  3084. Vector<Vector<uint8_t>> vpv;
  3085. rt->sdf_buffer_read = RD::get_singleton()->texture_create(tformat, RD::TextureView(), vpv);
  3086. }
  3087. return rt->sdf_buffer_read;
  3088. }
  3089. void TextureStorage::_render_target_allocate_sdf(RenderTarget *rt) {
  3090. ERR_FAIL_COND(rt->sdf_buffer_write_fb.is_valid());
  3091. if (rt->sdf_buffer_read.is_valid()) {
  3092. RD::get_singleton()->free(rt->sdf_buffer_read);
  3093. rt->sdf_buffer_read = RID();
  3094. }
  3095. Size2i size = _render_target_get_sdf_rect(rt).size;
  3096. RD::TextureFormat tformat;
  3097. tformat.format = RD::DATA_FORMAT_R8_UNORM;
  3098. tformat.width = size.width;
  3099. tformat.height = size.height;
  3100. tformat.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_STORAGE_BIT | RD::TEXTURE_USAGE_COLOR_ATTACHMENT_BIT;
  3101. tformat.texture_type = RD::TEXTURE_TYPE_2D;
  3102. rt->sdf_buffer_write = RD::get_singleton()->texture_create(tformat, RD::TextureView());
  3103. {
  3104. Vector<RID> write_fb;
  3105. write_fb.push_back(rt->sdf_buffer_write);
  3106. rt->sdf_buffer_write_fb = RD::get_singleton()->framebuffer_create(write_fb);
  3107. }
  3108. int scale;
  3109. switch (rt->sdf_scale) {
  3110. case RS::VIEWPORT_SDF_SCALE_100_PERCENT: {
  3111. scale = 100;
  3112. } break;
  3113. case RS::VIEWPORT_SDF_SCALE_50_PERCENT: {
  3114. scale = 50;
  3115. } break;
  3116. case RS::VIEWPORT_SDF_SCALE_25_PERCENT: {
  3117. scale = 25;
  3118. } break;
  3119. default: {
  3120. ERR_PRINT("Invalid viewport SDF scale, defaulting to 100%.");
  3121. scale = 100;
  3122. } break;
  3123. }
  3124. rt->process_size = size * scale / 100;
  3125. rt->process_size = rt->process_size.maxi(1);
  3126. tformat.format = RD::DATA_FORMAT_R16G16_SINT;
  3127. tformat.width = rt->process_size.width;
  3128. tformat.height = rt->process_size.height;
  3129. tformat.usage_bits = RD::TEXTURE_USAGE_STORAGE_BIT;
  3130. rt->sdf_buffer_process[0] = RD::get_singleton()->texture_create(tformat, RD::TextureView());
  3131. rt->sdf_buffer_process[1] = RD::get_singleton()->texture_create(tformat, RD::TextureView());
  3132. tformat.format = RD::DATA_FORMAT_R16_SNORM;
  3133. tformat.usage_bits = RD::TEXTURE_USAGE_SAMPLING_BIT | RD::TEXTURE_USAGE_STORAGE_BIT;
  3134. rt->sdf_buffer_read = RD::get_singleton()->texture_create(tformat, RD::TextureView());
  3135. {
  3136. Vector<RD::Uniform> uniforms;
  3137. {
  3138. RD::Uniform u;
  3139. u.uniform_type = RD::UNIFORM_TYPE_IMAGE;
  3140. u.binding = 1;
  3141. u.append_id(rt->sdf_buffer_write);
  3142. uniforms.push_back(u);
  3143. }
  3144. {
  3145. RD::Uniform u;
  3146. u.uniform_type = RD::UNIFORM_TYPE_IMAGE;
  3147. u.binding = 2;
  3148. u.append_id(rt->sdf_buffer_read);
  3149. uniforms.push_back(u);
  3150. }
  3151. {
  3152. RD::Uniform u;
  3153. u.uniform_type = RD::UNIFORM_TYPE_IMAGE;
  3154. u.binding = 3;
  3155. u.append_id(rt->sdf_buffer_process[0]);
  3156. uniforms.push_back(u);
  3157. }
  3158. {
  3159. RD::Uniform u;
  3160. u.uniform_type = RD::UNIFORM_TYPE_IMAGE;
  3161. u.binding = 4;
  3162. u.append_id(rt->sdf_buffer_process[1]);
  3163. uniforms.push_back(u);
  3164. }
  3165. rt->sdf_buffer_process_uniform_sets[0] = RD::get_singleton()->uniform_set_create(uniforms, rt_sdf.shader.version_get_shader(rt_sdf.shader_version, 0), 0);
  3166. RID aux2 = uniforms.write[2].get_id(0);
  3167. RID aux3 = uniforms.write[3].get_id(0);
  3168. uniforms.write[2].set_id(0, aux3);
  3169. uniforms.write[3].set_id(0, aux2);
  3170. rt->sdf_buffer_process_uniform_sets[1] = RD::get_singleton()->uniform_set_create(uniforms, rt_sdf.shader.version_get_shader(rt_sdf.shader_version, 0), 0);
  3171. }
  3172. }
  3173. void TextureStorage::_render_target_clear_sdf(RenderTarget *rt) {
  3174. if (rt->sdf_buffer_read.is_valid()) {
  3175. RD::get_singleton()->free(rt->sdf_buffer_read);
  3176. rt->sdf_buffer_read = RID();
  3177. }
  3178. if (rt->sdf_buffer_write_fb.is_valid()) {
  3179. RD::get_singleton()->free(rt->sdf_buffer_write);
  3180. RD::get_singleton()->free(rt->sdf_buffer_process[0]);
  3181. RD::get_singleton()->free(rt->sdf_buffer_process[1]);
  3182. rt->sdf_buffer_write = RID();
  3183. rt->sdf_buffer_write_fb = RID();
  3184. rt->sdf_buffer_process[0] = RID();
  3185. rt->sdf_buffer_process[1] = RID();
  3186. rt->sdf_buffer_process_uniform_sets[0] = RID();
  3187. rt->sdf_buffer_process_uniform_sets[1] = RID();
  3188. }
  3189. }
  3190. RID TextureStorage::render_target_get_sdf_framebuffer(RID p_render_target) {
  3191. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3192. ERR_FAIL_NULL_V(rt, RID());
  3193. if (rt->sdf_buffer_write_fb.is_null()) {
  3194. _render_target_allocate_sdf(rt);
  3195. }
  3196. return rt->sdf_buffer_write_fb;
  3197. }
  3198. void TextureStorage::render_target_sdf_process(RID p_render_target) {
  3199. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3200. ERR_FAIL_NULL(rt);
  3201. ERR_FAIL_COND(rt->sdf_buffer_write_fb.is_null());
  3202. RenderTargetSDF::PushConstant push_constant;
  3203. Rect2i r = _render_target_get_sdf_rect(rt);
  3204. push_constant.size[0] = r.size.width;
  3205. push_constant.size[1] = r.size.height;
  3206. push_constant.stride = 0;
  3207. push_constant.shift = 0;
  3208. push_constant.base_size[0] = r.size.width;
  3209. push_constant.base_size[1] = r.size.height;
  3210. bool shrink = false;
  3211. switch (rt->sdf_scale) {
  3212. case RS::VIEWPORT_SDF_SCALE_50_PERCENT: {
  3213. push_constant.size[0] >>= 1;
  3214. push_constant.size[1] >>= 1;
  3215. push_constant.shift = 1;
  3216. shrink = true;
  3217. } break;
  3218. case RS::VIEWPORT_SDF_SCALE_25_PERCENT: {
  3219. push_constant.size[0] >>= 2;
  3220. push_constant.size[1] >>= 2;
  3221. push_constant.shift = 2;
  3222. shrink = true;
  3223. } break;
  3224. default: {
  3225. };
  3226. }
  3227. RD::ComputeListID compute_list = RD::get_singleton()->compute_list_begin();
  3228. /* Load */
  3229. RD::get_singleton()->compute_list_bind_compute_pipeline(compute_list, rt_sdf.pipelines[shrink ? RenderTargetSDF::SHADER_LOAD_SHRINK : RenderTargetSDF::SHADER_LOAD]);
  3230. RD::get_singleton()->compute_list_bind_uniform_set(compute_list, rt->sdf_buffer_process_uniform_sets[1], 0); //fill [0]
  3231. RD::get_singleton()->compute_list_set_push_constant(compute_list, &push_constant, sizeof(RenderTargetSDF::PushConstant));
  3232. RD::get_singleton()->compute_list_dispatch_threads(compute_list, push_constant.size[0], push_constant.size[1], 1);
  3233. /* Process */
  3234. int stride = nearest_power_of_2_templated(MAX(push_constant.size[0], push_constant.size[1]) / 2);
  3235. RD::get_singleton()->compute_list_bind_compute_pipeline(compute_list, rt_sdf.pipelines[RenderTargetSDF::SHADER_PROCESS]);
  3236. RD::get_singleton()->compute_list_add_barrier(compute_list);
  3237. bool swap = false;
  3238. //jumpflood
  3239. while (stride > 0) {
  3240. RD::get_singleton()->compute_list_bind_uniform_set(compute_list, rt->sdf_buffer_process_uniform_sets[swap ? 1 : 0], 0);
  3241. push_constant.stride = stride;
  3242. RD::get_singleton()->compute_list_set_push_constant(compute_list, &push_constant, sizeof(RenderTargetSDF::PushConstant));
  3243. RD::get_singleton()->compute_list_dispatch_threads(compute_list, push_constant.size[0], push_constant.size[1], 1);
  3244. stride /= 2;
  3245. swap = !swap;
  3246. RD::get_singleton()->compute_list_add_barrier(compute_list);
  3247. }
  3248. /* Store */
  3249. RD::get_singleton()->compute_list_bind_compute_pipeline(compute_list, rt_sdf.pipelines[shrink ? RenderTargetSDF::SHADER_STORE_SHRINK : RenderTargetSDF::SHADER_STORE]);
  3250. RD::get_singleton()->compute_list_bind_uniform_set(compute_list, rt->sdf_buffer_process_uniform_sets[swap ? 1 : 0], 0);
  3251. RD::get_singleton()->compute_list_set_push_constant(compute_list, &push_constant, sizeof(RenderTargetSDF::PushConstant));
  3252. RD::get_singleton()->compute_list_dispatch_threads(compute_list, push_constant.size[0], push_constant.size[1], 1);
  3253. RD::get_singleton()->compute_list_end();
  3254. }
  3255. void TextureStorage::render_target_copy_to_back_buffer(RID p_render_target, const Rect2i &p_region, bool p_gen_mipmaps) {
  3256. CopyEffects *copy_effects = CopyEffects::get_singleton();
  3257. ERR_FAIL_NULL(copy_effects);
  3258. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3259. ERR_FAIL_NULL(rt);
  3260. if (!rt->backbuffer.is_valid()) {
  3261. _create_render_target_backbuffer(rt);
  3262. }
  3263. Rect2i region;
  3264. if (p_region == Rect2i()) {
  3265. region.size = rt->size;
  3266. } else {
  3267. region = Rect2i(Size2i(), rt->size).intersection(p_region);
  3268. if (region.size == Size2i()) {
  3269. return; //nothing to do
  3270. }
  3271. }
  3272. // TODO figure out stereo support here
  3273. if (RendererSceneRenderRD::get_singleton()->_render_buffers_can_be_storage()) {
  3274. copy_effects->copy_to_rect(rt->color, rt->backbuffer_mipmap0, region, false, false, false, !rt->use_hdr, true);
  3275. } else {
  3276. Rect2 src_rect = Rect2(region);
  3277. src_rect.position /= Size2(rt->size);
  3278. src_rect.size /= Size2(rt->size);
  3279. copy_effects->copy_to_fb_rect(rt->color, rt->backbuffer_fb, region, false, false, false, false, RID(), false, true, false, false, src_rect);
  3280. }
  3281. if (!p_gen_mipmaps) {
  3282. return;
  3283. }
  3284. RD::get_singleton()->draw_command_begin_label("Gaussian Blur Mipmaps");
  3285. //then mipmap blur
  3286. RID prev_texture = rt->color; //use color, not backbuffer, as bb has mipmaps.
  3287. Size2i texture_size = rt->size;
  3288. for (int i = 0; i < rt->backbuffer_mipmaps.size(); i++) {
  3289. region.position.x >>= 1;
  3290. region.position.y >>= 1;
  3291. region.size = Size2i(region.size.x >> 1, region.size.y >> 1).maxi(1);
  3292. texture_size = Size2i(texture_size.x >> 1, texture_size.y >> 1).maxi(1);
  3293. RID mipmap = rt->backbuffer_mipmaps[i];
  3294. if (RendererSceneRenderRD::get_singleton()->_render_buffers_can_be_storage()) {
  3295. copy_effects->gaussian_blur(prev_texture, mipmap, region, texture_size, !rt->use_hdr);
  3296. } else {
  3297. copy_effects->gaussian_blur_raster(prev_texture, mipmap, region, texture_size);
  3298. }
  3299. prev_texture = mipmap;
  3300. }
  3301. RD::get_singleton()->draw_command_end_label();
  3302. }
  3303. void TextureStorage::render_target_clear_back_buffer(RID p_render_target, const Rect2i &p_region, const Color &p_color) {
  3304. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3305. ERR_FAIL_NULL(rt);
  3306. CopyEffects *copy_effects = CopyEffects::get_singleton();
  3307. ERR_FAIL_NULL(copy_effects);
  3308. if (!rt->backbuffer.is_valid()) {
  3309. _create_render_target_backbuffer(rt);
  3310. }
  3311. Rect2i region;
  3312. if (p_region == Rect2i()) {
  3313. region.size = rt->size;
  3314. } else {
  3315. region = Rect2i(Size2i(), rt->size).intersection(p_region);
  3316. if (region.size == Size2i()) {
  3317. return; //nothing to do
  3318. }
  3319. }
  3320. // Single texture copy for backbuffer.
  3321. if (RendererSceneRenderRD::get_singleton()->_render_buffers_can_be_storage()) {
  3322. copy_effects->set_color(rt->backbuffer_mipmap0, p_color, region, !rt->use_hdr);
  3323. } else {
  3324. copy_effects->set_color_raster(rt->backbuffer_mipmap0, p_color, region);
  3325. }
  3326. }
  3327. void TextureStorage::render_target_gen_back_buffer_mipmaps(RID p_render_target, const Rect2i &p_region) {
  3328. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3329. ERR_FAIL_NULL(rt);
  3330. CopyEffects *copy_effects = CopyEffects::get_singleton();
  3331. ERR_FAIL_NULL(copy_effects);
  3332. if (!rt->backbuffer.is_valid()) {
  3333. _create_render_target_backbuffer(rt);
  3334. }
  3335. Rect2i region;
  3336. if (p_region == Rect2i()) {
  3337. region.size = rt->size;
  3338. } else {
  3339. region = Rect2i(Size2i(), rt->size).intersection(p_region);
  3340. if (region.size == Size2i()) {
  3341. return; //nothing to do
  3342. }
  3343. }
  3344. RD::get_singleton()->draw_command_begin_label("Gaussian Blur Mipmaps2");
  3345. //then mipmap blur
  3346. RID prev_texture = rt->backbuffer_mipmap0;
  3347. Size2i texture_size = rt->size;
  3348. for (int i = 0; i < rt->backbuffer_mipmaps.size(); i++) {
  3349. region.position.x >>= 1;
  3350. region.position.y >>= 1;
  3351. region.size = Size2i(region.size.x >> 1, region.size.y >> 1).maxi(1);
  3352. texture_size = Size2i(texture_size.x >> 1, texture_size.y >> 1).maxi(1);
  3353. RID mipmap = rt->backbuffer_mipmaps[i];
  3354. if (RendererSceneRenderRD::get_singleton()->_render_buffers_can_be_storage()) {
  3355. copy_effects->gaussian_blur(prev_texture, mipmap, region, texture_size, !rt->use_hdr);
  3356. } else {
  3357. copy_effects->gaussian_blur_raster(prev_texture, mipmap, region, texture_size);
  3358. }
  3359. prev_texture = mipmap;
  3360. }
  3361. RD::get_singleton()->draw_command_end_label();
  3362. }
  3363. RID TextureStorage::render_target_get_framebuffer_uniform_set(RID p_render_target) {
  3364. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3365. ERR_FAIL_NULL_V(rt, RID());
  3366. return rt->framebuffer_uniform_set;
  3367. }
  3368. RID TextureStorage::render_target_get_backbuffer_uniform_set(RID p_render_target) {
  3369. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3370. ERR_FAIL_NULL_V(rt, RID());
  3371. return rt->backbuffer_uniform_set;
  3372. }
  3373. void TextureStorage::render_target_set_framebuffer_uniform_set(RID p_render_target, RID p_uniform_set) {
  3374. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3375. ERR_FAIL_NULL(rt);
  3376. rt->framebuffer_uniform_set = p_uniform_set;
  3377. }
  3378. void TextureStorage::render_target_set_backbuffer_uniform_set(RID p_render_target, RID p_uniform_set) {
  3379. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3380. ERR_FAIL_NULL(rt);
  3381. rt->backbuffer_uniform_set = p_uniform_set;
  3382. }
  3383. void TextureStorage::render_target_set_vrs_mode(RID p_render_target, RS::ViewportVRSMode p_mode) {
  3384. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3385. ERR_FAIL_NULL(rt);
  3386. rt->vrs_mode = p_mode;
  3387. }
  3388. RS::ViewportVRSMode TextureStorage::render_target_get_vrs_mode(RID p_render_target) const {
  3389. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3390. ERR_FAIL_NULL_V(rt, RS::VIEWPORT_VRS_DISABLED);
  3391. return rt->vrs_mode;
  3392. }
  3393. void TextureStorage::render_target_set_vrs_update_mode(RID p_render_target, RS::ViewportVRSUpdateMode p_mode) {
  3394. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3395. ERR_FAIL_NULL(rt);
  3396. rt->vrs_update_mode = p_mode;
  3397. }
  3398. RS::ViewportVRSUpdateMode TextureStorage::render_target_get_vrs_update_mode(RID p_render_target) const {
  3399. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3400. ERR_FAIL_NULL_V(rt, RS::VIEWPORT_VRS_UPDATE_DISABLED);
  3401. return rt->vrs_update_mode;
  3402. }
  3403. void TextureStorage::render_target_set_vrs_texture(RID p_render_target, RID p_texture) {
  3404. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3405. ERR_FAIL_NULL(rt);
  3406. rt->vrs_texture = p_texture;
  3407. }
  3408. RID TextureStorage::render_target_get_vrs_texture(RID p_render_target) const {
  3409. RenderTarget *rt = render_target_owner.get_or_null(p_render_target);
  3410. ERR_FAIL_NULL_V(rt, RID());
  3411. return rt->vrs_texture;
  3412. }