123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252 |
- /*
- Simple DirectMedia Layer
- Copyright (C) 1997-2024 Sam Lantinga <[email protected]>
- This software is provided 'as-is', without any express or implied
- warranty. In no event will the authors be held liable for any damages
- arising from the use of this software.
- Permission is granted to anyone to use this software for any purpose,
- including commercial applications, and to alter it and redistribute it
- freely, subject to the following restrictions:
- 1. The origin of this software must not be misrepresented; you must not
- claim that you wrote the original software. If you use this software
- in a product, an acknowledgment in the product documentation would be
- appreciated but is not required.
- 2. Altered source versions must be plainly marked as such, and must not be
- misrepresented as being the original software.
- 3. This notice may not be removed or altered from any source distribution.
- */
- #include "SDL_internal.h"
- #if SDL_VIDEO_RENDER_D3D12
- #define SDL_D3D12_NUM_BUFFERS 2
- #define SDL_D3D12_NUM_VERTEX_BUFFERS 256
- #define SDL_D3D12_MAX_NUM_TEXTURES 16384
- #define SDL_D3D12_NUM_UPLOAD_BUFFERS 32
- #include "../../core/windows/SDL_windows.h"
- #include "../../video/windows/SDL_windowswindow.h"
- #include "../SDL_sysrender.h"
- #include "../SDL_d3dmath.h"
- #include "../../video/SDL_pixels_c.h"
- #if defined(SDL_PLATFORM_XBOXONE) || defined(SDL_PLATFORM_XBOXSERIES)
- #include "SDL_render_d3d12_xbox.h"
- #ifndef D3D12_TEXTURE_DATA_PITCH_ALIGNMENT
- #define D3D12_TEXTURE_DATA_PITCH_ALIGNMENT 256
- #endif
- #else
- #include <d3d12.h>
- #include <dxgi1_6.h>
- #include <dxgidebug.h>
- #include <d3d12sdklayers.h>
- #endif
- #include "SDL_shaders_d3d12.h"
- #if defined(_MSC_VER) && !defined(__clang__)
- #define SDL_COMPOSE_ERROR(str) __FUNCTION__ ", " str
- #else
- #define SDL_COMPOSE_ERROR(str) SDL_STRINGIFY_ARG(__FUNCTION__) ", " str
- #endif
- #ifdef __cplusplus
- #define SAFE_RELEASE(X) \
- if (X) { \
- (X)->Release(); \
- X = NULL; \
- }
- #define D3D_CALL(THIS, FUNC, ...) (THIS)->FUNC(__VA_ARGS__)
- #define D3D_CALL_RET(THIS, FUNC, RETVAL, ...) *(RETVAL) = (THIS)->FUNC(__VA_ARGS__)
- #define D3D_GUID(X) (X)
- #else
- #define SAFE_RELEASE(X) \
- if (X) { \
- (X)->lpVtbl->Release(X); \
- X = NULL; \
- }
- #define D3D_CALL(THIS, FUNC, ...) (THIS)->lpVtbl->FUNC((THIS), ##__VA_ARGS__)
- #define D3D_CALL_RET(THIS, FUNC, ...) (THIS)->lpVtbl->FUNC((THIS), ##__VA_ARGS__)
- #define D3D_GUID(X) &(X)
- #endif
- /* Set up for C function definitions, even when using C++ */
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* !!! FIXME: vertex buffer bandwidth could be lower; only use UV coords when
- !!! FIXME: textures are needed. */
- /* Vertex shader, common values */
- typedef struct
- {
- Float4X4 model;
- Float4X4 projectionAndView;
- } VertexShaderConstants;
- typedef struct
- {
- float scRGB_output;
- float color_scale;
- float unused1;
- float unused2;
- float YCbCr_matrix[16];
- } PixelShaderConstants;
- /* Per-vertex data */
- typedef struct
- {
- Float2 pos;
- Float2 tex;
- SDL_FColor color;
- } VertexPositionColor;
- /* Per-texture data */
- typedef struct
- {
- int w, h;
- ID3D12Resource *mainTexture;
- D3D12_CPU_DESCRIPTOR_HANDLE mainTextureResourceView;
- D3D12_RESOURCE_STATES mainResourceState;
- SIZE_T mainSRVIndex;
- D3D12_CPU_DESCRIPTOR_HANDLE mainTextureRenderTargetView;
- DXGI_FORMAT mainTextureFormat;
- ID3D12Resource *stagingBuffer;
- D3D12_RESOURCE_STATES stagingResourceState;
- D3D12_FILTER scaleMode;
- D3D12_Shader shader;
- const float *shader_params;
- #if SDL_HAVE_YUV
- /* YV12 texture support */
- SDL_bool yuv;
- ID3D12Resource *mainTextureU;
- D3D12_CPU_DESCRIPTOR_HANDLE mainTextureResourceViewU;
- D3D12_RESOURCE_STATES mainResourceStateU;
- SIZE_T mainSRVIndexU;
- ID3D12Resource *mainTextureV;
- D3D12_CPU_DESCRIPTOR_HANDLE mainTextureResourceViewV;
- D3D12_RESOURCE_STATES mainResourceStateV;
- SIZE_T mainSRVIndexV;
- /* NV12 texture support */
- SDL_bool nv12;
- D3D12_CPU_DESCRIPTOR_HANDLE mainTextureResourceViewNV;
- SIZE_T mainSRVIndexNV;
- Uint8 *pixels;
- int pitch;
- #endif
- SDL_Rect lockedRect;
- } D3D12_TextureData;
- /* Pipeline State Object data */
- typedef struct
- {
- D3D12_Shader shader;
- SDL_bool scRGB_output;
- float color_scale;
- const float *shader_params;
- SDL_BlendMode blendMode;
- D3D12_PRIMITIVE_TOPOLOGY_TYPE topology;
- DXGI_FORMAT rtvFormat;
- ID3D12PipelineState *pipelineState;
- } D3D12_PipelineState;
- /* Vertex Buffer */
- typedef struct
- {
- ID3D12Resource *resource;
- D3D12_VERTEX_BUFFER_VIEW view;
- size_t size;
- } D3D12_VertexBuffer;
- /* For SRV pool allocator */
- typedef struct
- {
- SIZE_T index;
- void *next;
- } D3D12_SRVPoolNode;
- /* Private renderer data */
- typedef struct
- {
- void *hDXGIMod;
- void *hD3D12Mod;
- #if defined(SDL_PLATFORM_XBOXONE) || defined(SDL_PLATFORM_XBOXSERIES)
- UINT64 frameToken;
- #else
- IDXGIFactory6 *dxgiFactory;
- IDXGIAdapter4 *dxgiAdapter;
- IDXGIDebug *dxgiDebug;
- IDXGISwapChain4 *swapChain;
- #endif
- ID3D12Device1 *d3dDevice;
- ID3D12Debug *debugInterface;
- ID3D12CommandQueue *commandQueue;
- ID3D12GraphicsCommandList2 *commandList;
- DXGI_SWAP_EFFECT swapEffect;
- UINT swapFlags;
- DXGI_FORMAT renderTargetFormat;
- SDL_bool pixelSizeChanged;
- /* Descriptor heaps */
- ID3D12DescriptorHeap *rtvDescriptorHeap;
- UINT rtvDescriptorSize;
- ID3D12DescriptorHeap *textureRTVDescriptorHeap;
- ID3D12DescriptorHeap *srvDescriptorHeap;
- UINT srvDescriptorSize;
- ID3D12DescriptorHeap *samplerDescriptorHeap;
- UINT samplerDescriptorSize;
- /* Data needed per backbuffer */
- ID3D12CommandAllocator *commandAllocators[SDL_D3D12_NUM_BUFFERS];
- ID3D12Resource *renderTargets[SDL_D3D12_NUM_BUFFERS];
- UINT64 fenceValue;
- int currentBackBufferIndex;
- /* Fences */
- ID3D12Fence *fence;
- HANDLE fenceEvent;
- /* Root signature and pipeline state data */
- ID3D12RootSignature *rootSignatures[NUM_ROOTSIGS];
- int pipelineStateCount;
- D3D12_PipelineState *pipelineStates;
- D3D12_PipelineState *currentPipelineState;
- D3D12_VertexBuffer vertexBuffers[SDL_D3D12_NUM_VERTEX_BUFFERS];
- D3D12_CPU_DESCRIPTOR_HANDLE nearestPixelSampler;
- D3D12_CPU_DESCRIPTOR_HANDLE linearSampler;
- /* Data for staging/allocating textures */
- ID3D12Resource *uploadBuffers[SDL_D3D12_NUM_UPLOAD_BUFFERS];
- int currentUploadBuffer;
- /* Pool allocator to handle reusing SRV heap indices */
- D3D12_SRVPoolNode *srvPoolHead;
- D3D12_SRVPoolNode srvPoolNodes[SDL_D3D12_MAX_NUM_TEXTURES];
- /* Vertex buffer constants */
- VertexShaderConstants vertexShaderConstantsData;
- /* Cached renderer properties */
- DXGI_MODE_ROTATION rotation;
- D3D12_TextureData *textureRenderTarget;
- D3D12_CPU_DESCRIPTOR_HANDLE currentRenderTargetView;
- D3D12_CPU_DESCRIPTOR_HANDLE currentShaderResource;
- D3D12_CPU_DESCRIPTOR_HANDLE currentSampler;
- SDL_bool cliprectDirty;
- SDL_bool currentCliprectEnabled;
- SDL_Rect currentCliprect;
- SDL_Rect currentViewport;
- int currentViewportRotation;
- SDL_bool viewportDirty;
- Float4X4 identity;
- int currentVertexBuffer;
- SDL_bool issueBatch;
- } D3D12_RenderData;
- /* Define D3D GUIDs here so we don't have to include uuid.lib. */
- #ifdef HAVE_GCC_DIAGNOSTIC_PRAGMA
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wunused-const-variable"
- #endif
- static const GUID SDL_IID_IDXGIFactory6 = { 0xc1b6694f, 0xff09, 0x44a9, { 0xb0, 0x3c, 0x77, 0x90, 0x0a, 0x0a, 0x1d, 0x17 } };
- static const GUID SDL_IID_IDXGIAdapter4 = { 0x3c8d99d1, 0x4fbf, 0x4181, { 0xa8, 0x2c, 0xaf, 0x66, 0xbf, 0x7b, 0xd2, 0x4e } };
- static const GUID SDL_IID_IDXGIDevice1 = { 0x77db970f, 0x6276, 0x48ba, { 0xba, 0x28, 0x07, 0x01, 0x43, 0xb4, 0x39, 0x2c } };
- static const GUID SDL_IID_ID3D12Device1 = { 0x77acce80, 0x638e, 0x4e65, { 0x88, 0x95, 0xc1, 0xf2, 0x33, 0x86, 0x86, 0x3e } };
- static const GUID SDL_IID_IDXGISwapChain4 = { 0x3D585D5A, 0xBD4A, 0x489E, { 0xB1, 0xF4, 0x3D, 0xBC, 0xB6, 0x45, 0x2F, 0xFB } };
- static const GUID SDL_IID_IDXGIDebug1 = { 0xc5a05f0c, 0x16f2, 0x4adf, { 0x9f, 0x4d, 0xa8, 0xc4, 0xd5, 0x8a, 0xc5, 0x50 } };
- static const GUID SDL_IID_IDXGIInfoQueue = { 0xD67441C7, 0x672A, 0x476f, { 0x9E, 0x82, 0xCD, 0x55, 0xB4, 0x49, 0x49, 0xCE } };
- static const GUID SDL_IID_ID3D12Debug = { 0x344488b7, 0x6846, 0x474b, { 0xb9, 0x89, 0xf0, 0x27, 0x44, 0x82, 0x45, 0xe0 } };
- static const GUID SDL_DXGI_DEBUG_ALL = { 0xe48ae283, 0xda80, 0x490b, { 0x87, 0xe6, 0x43, 0xe9, 0xa9, 0xcf, 0xda, 0x8 } };
- static const GUID SDL_IID_ID3D12CommandQueue = { 0x0ec870a6, 0x5d7e, 0x4c22, { 0x8c, 0xfc, 0x5b, 0xaa, 0xe0, 0x76, 0x16, 0xed } };
- static const GUID SDL_IID_ID3D12DescriptorHeap = { 0x8efb471d, 0x616c, 0x4f49, { 0x90, 0xf7, 0x12, 0x7b, 0xb7, 0x63, 0xfa, 0x51 } };
- static const GUID SDL_IID_ID3D12CommandAllocator = { 0x6102dee4, 0xaf59, 0x4b09, { 0xb9, 0x99, 0xb4, 0x4d, 0x73, 0xf0, 0x9b, 0x24 } };
- static const GUID SDL_IID_ID3D12GraphicsCommandList2 = { 0x38C3E585, 0xFF17, 0x412C, { 0x91, 0x50, 0x4F, 0xC6, 0xF9, 0xD7, 0x2A, 0x28 } };
- static const GUID SDL_IID_ID3D12Fence = { 0x0a753dcf, 0xc4d8, 0x4b91, { 0xad, 0xf6, 0xbe, 0x5a, 0x60, 0xd9, 0x5a, 0x76 } };
- static const GUID SDL_IID_ID3D12Resource = { 0x696442be, 0xa72e, 0x4059, { 0xbc, 0x79, 0x5b, 0x5c, 0x98, 0x04, 0x0f, 0xad } };
- static const GUID SDL_IID_ID3D12RootSignature = { 0xc54a6b66, 0x72df, 0x4ee8, { 0x8b, 0xe5, 0xa9, 0x46, 0xa1, 0x42, 0x92, 0x14 } };
- static const GUID SDL_IID_ID3D12PipelineState = { 0x765a30f3, 0xf624, 0x4c6f, { 0xa8, 0x28, 0xac, 0xe9, 0x48, 0x62, 0x24, 0x45 } };
- static const GUID SDL_IID_ID3D12Heap = { 0x6b3b2502, 0x6e51, 0x45b3, { 0x90, 0xee, 0x98, 0x84, 0x26, 0x5e, 0x8d, 0xf3 } };
- static const GUID SDL_IID_ID3D12InfoQueue = { 0x0742a90b, 0xc387, 0x483f, { 0xb9, 0x46, 0x30, 0xa7, 0xe4, 0xe6, 0x14, 0x58 } };
- #ifdef HAVE_GCC_DIAGNOSTIC_PRAGMA
- #pragma GCC diagnostic pop
- #endif
- UINT D3D12_Align(UINT location, UINT alignment)
- {
- return (location + (alignment - 1)) & ~(alignment - 1);
- }
- Uint32 D3D12_DXGIFormatToSDLPixelFormat(DXGI_FORMAT dxgiFormat)
- {
- switch (dxgiFormat) {
- case DXGI_FORMAT_B8G8R8A8_UNORM:
- case DXGI_FORMAT_B8G8R8A8_UNORM_SRGB:
- return SDL_PIXELFORMAT_ARGB8888;
- case DXGI_FORMAT_B8G8R8X8_UNORM:
- case DXGI_FORMAT_B8G8R8X8_UNORM_SRGB:
- return SDL_PIXELFORMAT_XRGB8888;
- case DXGI_FORMAT_R10G10B10A2_UNORM:
- return SDL_PIXELFORMAT_XBGR2101010;
- case DXGI_FORMAT_R16G16B16A16_FLOAT:
- return SDL_PIXELFORMAT_RGBA64_FLOAT;
- default:
- return SDL_PIXELFORMAT_UNKNOWN;
- }
- }
- static DXGI_FORMAT SDLPixelFormatToDXGITextureFormat(Uint32 format, Uint32 colorspace)
- {
- switch (format) {
- case SDL_PIXELFORMAT_RGBA64_FLOAT:
- return DXGI_FORMAT_R16G16B16A16_FLOAT;
- case SDL_PIXELFORMAT_ARGB8888:
- if (colorspace == SDL_COLORSPACE_SCRGB) {
- return DXGI_FORMAT_B8G8R8A8_UNORM_SRGB;
- }
- return DXGI_FORMAT_B8G8R8A8_UNORM;
- case SDL_PIXELFORMAT_XRGB8888:
- if (colorspace == SDL_COLORSPACE_SCRGB) {
- return DXGI_FORMAT_B8G8R8X8_UNORM_SRGB;
- }
- return DXGI_FORMAT_B8G8R8X8_UNORM;
- case SDL_PIXELFORMAT_YV12:
- case SDL_PIXELFORMAT_IYUV:
- return DXGI_FORMAT_R8_UNORM;
- case SDL_PIXELFORMAT_NV12:
- case SDL_PIXELFORMAT_NV21:
- return DXGI_FORMAT_NV12;
- case SDL_PIXELFORMAT_P010:
- return DXGI_FORMAT_P010;
- case SDL_PIXELFORMAT_P016:
- return DXGI_FORMAT_P016;
- default:
- return DXGI_FORMAT_UNKNOWN;
- }
- }
- static DXGI_FORMAT SDLPixelFormatToDXGIMainResourceViewFormat(Uint32 format, Uint32 colorspace)
- {
- switch (format) {
- case SDL_PIXELFORMAT_RGBA64_FLOAT:
- return DXGI_FORMAT_R16G16B16A16_FLOAT;
- case SDL_PIXELFORMAT_ARGB8888:
- if (colorspace == SDL_COLORSPACE_SCRGB) {
- return DXGI_FORMAT_B8G8R8A8_UNORM_SRGB;
- }
- return DXGI_FORMAT_B8G8R8A8_UNORM;
- case SDL_PIXELFORMAT_XRGB8888:
- if (colorspace == SDL_COLORSPACE_SCRGB) {
- return DXGI_FORMAT_B8G8R8X8_UNORM_SRGB;
- }
- return DXGI_FORMAT_B8G8R8X8_UNORM;
- case SDL_PIXELFORMAT_YV12:
- case SDL_PIXELFORMAT_IYUV:
- case SDL_PIXELFORMAT_NV12: /* For the Y texture */
- case SDL_PIXELFORMAT_NV21: /* For the Y texture */
- return DXGI_FORMAT_R8_UNORM;
- case SDL_PIXELFORMAT_P010: /* For the Y texture */
- case SDL_PIXELFORMAT_P016: /* For the Y texture */
- return DXGI_FORMAT_R16_UNORM;
- default:
- return DXGI_FORMAT_UNKNOWN;
- }
- }
- static void D3D12_DestroyTexture(SDL_Renderer *renderer, SDL_Texture *texture);
- static void D3D12_ReleaseAll(SDL_Renderer *renderer)
- {
- D3D12_RenderData *data = (D3D12_RenderData *)renderer->driverdata;
- SDL_Texture *texture = NULL;
- SDL_PropertiesID props = SDL_GetRendererProperties(renderer);
- SDL_SetProperty(props, SDL_PROP_RENDERER_D3D12_DEVICE_POINTER, NULL);
- SDL_SetProperty(props, SDL_PROP_RENDERER_D3D12_COMMAND_QUEUE_POINTER, NULL);
- /* Release all textures */
- for (texture = renderer->textures; texture; texture = texture->next) {
- D3D12_DestroyTexture(renderer, texture);
- }
- /* Release/reset everything else */
- if (data) {
- int i;
- #if !defined(SDL_PLATFORM_XBOXONE) && !defined(SDL_PLATFORM_XBOXSERIES)
- SAFE_RELEASE(data->dxgiFactory);
- SAFE_RELEASE(data->dxgiAdapter);
- SAFE_RELEASE(data->swapChain);
- #endif
- SAFE_RELEASE(data->d3dDevice);
- SAFE_RELEASE(data->debugInterface);
- SAFE_RELEASE(data->commandQueue);
- SAFE_RELEASE(data->commandList);
- SAFE_RELEASE(data->rtvDescriptorHeap);
- SAFE_RELEASE(data->textureRTVDescriptorHeap);
- SAFE_RELEASE(data->srvDescriptorHeap);
- SAFE_RELEASE(data->samplerDescriptorHeap);
- SAFE_RELEASE(data->fence);
- for (i = 0; i < SDL_D3D12_NUM_BUFFERS; ++i) {
- SAFE_RELEASE(data->commandAllocators[i]);
- SAFE_RELEASE(data->renderTargets[i]);
- }
- if (data->pipelineStateCount > 0) {
- for (i = 0; i < data->pipelineStateCount; ++i) {
- SAFE_RELEASE(data->pipelineStates[i].pipelineState);
- }
- SDL_free(data->pipelineStates);
- data->pipelineStateCount = 0;
- }
- for (i = 0; i < NUM_ROOTSIGS; ++i) {
- SAFE_RELEASE(data->rootSignatures[i]);
- }
- for (i = 0; i < SDL_D3D12_NUM_VERTEX_BUFFERS; ++i) {
- SAFE_RELEASE(data->vertexBuffers[i].resource);
- data->vertexBuffers[i].size = 0;
- }
- data->swapEffect = (DXGI_SWAP_EFFECT)0;
- data->swapFlags = 0;
- data->currentRenderTargetView.ptr = 0;
- data->currentSampler.ptr = 0;
- #if !defined(SDL_PLATFORM_XBOXONE) && !defined(SDL_PLATFORM_XBOXSERIES)
- /* Check for any leaks if in debug mode */
- if (data->dxgiDebug) {
- DXGI_DEBUG_RLO_FLAGS rloFlags = (DXGI_DEBUG_RLO_FLAGS)(DXGI_DEBUG_RLO_DETAIL | DXGI_DEBUG_RLO_IGNORE_INTERNAL);
- D3D_CALL(data->dxgiDebug, ReportLiveObjects, SDL_DXGI_DEBUG_ALL, rloFlags);
- SAFE_RELEASE(data->dxgiDebug);
- }
- #endif
- /* Unload the D3D libraries. This should be done last, in order
- * to prevent IUnknown::Release() calls from crashing.
- */
- if (data->hD3D12Mod) {
- SDL_UnloadObject(data->hD3D12Mod);
- data->hD3D12Mod = NULL;
- }
- if (data->hDXGIMod) {
- SDL_UnloadObject(data->hDXGIMod);
- data->hDXGIMod = NULL;
- }
- }
- }
- static D3D12_GPU_DESCRIPTOR_HANDLE D3D12_CPUtoGPUHandle(ID3D12DescriptorHeap *heap, D3D12_CPU_DESCRIPTOR_HANDLE CPUHandle)
- {
- D3D12_CPU_DESCRIPTOR_HANDLE CPUHeapStart;
- D3D12_GPU_DESCRIPTOR_HANDLE GPUHandle;
- SIZE_T offset;
- /* Calculate the correct offset into the heap */
- D3D_CALL_RET(heap, GetCPUDescriptorHandleForHeapStart, &CPUHeapStart);
- offset = CPUHandle.ptr - CPUHeapStart.ptr;
- D3D_CALL_RET(heap, GetGPUDescriptorHandleForHeapStart, &GPUHandle);
- GPUHandle.ptr += offset;
- return GPUHandle;
- }
- static void D3D12_WaitForGPU(D3D12_RenderData *data)
- {
- if (data->commandQueue && data->fence && data->fenceEvent) {
- D3D_CALL(data->commandQueue, Signal, data->fence, data->fenceValue);
- if (D3D_CALL(data->fence, GetCompletedValue) < data->fenceValue) {
- D3D_CALL(data->fence, SetEventOnCompletion,
- data->fenceValue,
- data->fenceEvent);
- WaitForSingleObjectEx(data->fenceEvent, INFINITE, FALSE);
- }
- data->fenceValue++;
- }
- }
- static D3D12_CPU_DESCRIPTOR_HANDLE D3D12_GetCurrentRenderTargetView(SDL_Renderer *renderer)
- {
- D3D12_RenderData *data = (D3D12_RenderData *)renderer->driverdata;
- D3D12_CPU_DESCRIPTOR_HANDLE rtvDescriptor;
- if (data->textureRenderTarget) {
- return data->textureRenderTarget->mainTextureRenderTargetView;
- }
- SDL_zero(rtvDescriptor);
- D3D_CALL_RET(data->rtvDescriptorHeap, GetCPUDescriptorHandleForHeapStart, &rtvDescriptor);
- rtvDescriptor.ptr += data->currentBackBufferIndex * data->rtvDescriptorSize;
- return rtvDescriptor;
- }
- static void D3D12_TransitionResource(D3D12_RenderData *data,
- ID3D12Resource *resource,
- D3D12_RESOURCE_STATES beforeState,
- D3D12_RESOURCE_STATES afterState)
- {
- D3D12_RESOURCE_BARRIER barrier;
- if (beforeState != afterState) {
- SDL_zero(barrier);
- barrier.Type = D3D12_RESOURCE_BARRIER_TYPE_TRANSITION;
- barrier.Transition.pResource = resource;
- barrier.Transition.StateBefore = beforeState;
- barrier.Transition.StateAfter = afterState;
- barrier.Transition.Subresource = D3D12_RESOURCE_BARRIER_ALL_SUBRESOURCES;
- D3D_CALL(data->commandList, ResourceBarrier, 1, &barrier);
- }
- }
- static void D3D12_ResetCommandList(D3D12_RenderData *data)
- {
- int i;
- ID3D12DescriptorHeap *rootDescriptorHeaps[] = { data->srvDescriptorHeap, data->samplerDescriptorHeap };
- ID3D12CommandAllocator *commandAllocator = data->commandAllocators[data->currentBackBufferIndex];
- D3D_CALL(commandAllocator, Reset);
- D3D_CALL(data->commandList, Reset, commandAllocator, NULL);
- data->currentPipelineState = NULL;
- data->currentVertexBuffer = 0;
- data->issueBatch = SDL_FALSE;
- data->cliprectDirty = SDL_TRUE;
- data->viewportDirty = SDL_TRUE;
- data->currentRenderTargetView.ptr = 0;
- /* FIXME should we also clear currentSampler.ptr and currentRenderTargetView.ptr ? (and use D3D12_InvalidateCachedState() instead) */
- /* Release any upload buffers that were inflight */
- for (i = 0; i < data->currentUploadBuffer; ++i) {
- SAFE_RELEASE(data->uploadBuffers[i]);
- }
- data->currentUploadBuffer = 0;
- D3D_CALL(data->commandList, SetDescriptorHeaps, 2, rootDescriptorHeaps);
- }
- static int D3D12_IssueBatch(D3D12_RenderData *data)
- {
- HRESULT result = S_OK;
- /* Issue the command list */
- result = D3D_CALL(data->commandList, Close);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("D3D12_IssueBatch"), result);
- return result;
- }
- D3D_CALL(data->commandQueue, ExecuteCommandLists, 1, (ID3D12CommandList *const *)&data->commandList);
- D3D12_WaitForGPU(data);
- D3D12_ResetCommandList(data);
- return result;
- }
- static void D3D12_DestroyRenderer(SDL_Renderer *renderer)
- {
- D3D12_RenderData *data = (D3D12_RenderData *)renderer->driverdata;
- D3D12_WaitForGPU(data);
- D3D12_ReleaseAll(renderer);
- if (data) {
- SDL_free(data);
- }
- SDL_free(renderer);
- }
- static D3D12_BLEND GetBlendFunc(SDL_BlendFactor factor)
- {
- switch (factor) {
- case SDL_BLENDFACTOR_ZERO:
- return D3D12_BLEND_ZERO;
- case SDL_BLENDFACTOR_ONE:
- return D3D12_BLEND_ONE;
- case SDL_BLENDFACTOR_SRC_COLOR:
- return D3D12_BLEND_SRC_COLOR;
- case SDL_BLENDFACTOR_ONE_MINUS_SRC_COLOR:
- return D3D12_BLEND_INV_SRC_COLOR;
- case SDL_BLENDFACTOR_SRC_ALPHA:
- return D3D12_BLEND_SRC_ALPHA;
- case SDL_BLENDFACTOR_ONE_MINUS_SRC_ALPHA:
- return D3D12_BLEND_INV_SRC_ALPHA;
- case SDL_BLENDFACTOR_DST_COLOR:
- return D3D12_BLEND_DEST_COLOR;
- case SDL_BLENDFACTOR_ONE_MINUS_DST_COLOR:
- return D3D12_BLEND_INV_DEST_COLOR;
- case SDL_BLENDFACTOR_DST_ALPHA:
- return D3D12_BLEND_DEST_ALPHA;
- case SDL_BLENDFACTOR_ONE_MINUS_DST_ALPHA:
- return D3D12_BLEND_INV_DEST_ALPHA;
- default:
- return (D3D12_BLEND)0;
- }
- }
- static D3D12_BLEND_OP GetBlendEquation(SDL_BlendOperation operation)
- {
- switch (operation) {
- case SDL_BLENDOPERATION_ADD:
- return D3D12_BLEND_OP_ADD;
- case SDL_BLENDOPERATION_SUBTRACT:
- return D3D12_BLEND_OP_SUBTRACT;
- case SDL_BLENDOPERATION_REV_SUBTRACT:
- return D3D12_BLEND_OP_REV_SUBTRACT;
- case SDL_BLENDOPERATION_MINIMUM:
- return D3D12_BLEND_OP_MIN;
- case SDL_BLENDOPERATION_MAXIMUM:
- return D3D12_BLEND_OP_MAX;
- default:
- return (D3D12_BLEND_OP)0;
- }
- }
- static void D3D12_CreateBlendState(SDL_Renderer *renderer, SDL_BlendMode blendMode, D3D12_BLEND_DESC *outBlendDesc)
- {
- SDL_BlendFactor srcColorFactor = SDL_GetBlendModeSrcColorFactor(blendMode);
- SDL_BlendFactor srcAlphaFactor = SDL_GetBlendModeSrcAlphaFactor(blendMode);
- SDL_BlendOperation colorOperation = SDL_GetBlendModeColorOperation(blendMode);
- SDL_BlendFactor dstColorFactor = SDL_GetBlendModeDstColorFactor(blendMode);
- SDL_BlendFactor dstAlphaFactor = SDL_GetBlendModeDstAlphaFactor(blendMode);
- SDL_BlendOperation alphaOperation = SDL_GetBlendModeAlphaOperation(blendMode);
- SDL_zerop(outBlendDesc);
- outBlendDesc->AlphaToCoverageEnable = FALSE;
- outBlendDesc->IndependentBlendEnable = FALSE;
- outBlendDesc->RenderTarget[0].BlendEnable = TRUE;
- outBlendDesc->RenderTarget[0].SrcBlend = GetBlendFunc(srcColorFactor);
- outBlendDesc->RenderTarget[0].DestBlend = GetBlendFunc(dstColorFactor);
- outBlendDesc->RenderTarget[0].BlendOp = GetBlendEquation(colorOperation);
- outBlendDesc->RenderTarget[0].SrcBlendAlpha = GetBlendFunc(srcAlphaFactor);
- outBlendDesc->RenderTarget[0].DestBlendAlpha = GetBlendFunc(dstAlphaFactor);
- outBlendDesc->RenderTarget[0].BlendOpAlpha = GetBlendEquation(alphaOperation);
- outBlendDesc->RenderTarget[0].RenderTargetWriteMask = D3D12_COLOR_WRITE_ENABLE_ALL;
- }
- static D3D12_PipelineState *D3D12_CreatePipelineState(SDL_Renderer *renderer,
- D3D12_Shader shader,
- SDL_BlendMode blendMode,
- D3D12_PRIMITIVE_TOPOLOGY_TYPE topology,
- DXGI_FORMAT rtvFormat)
- {
- const D3D12_INPUT_ELEMENT_DESC vertexDesc[] = {
- { "POSITION", 0, DXGI_FORMAT_R32G32_FLOAT, 0, 0, D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA, 0 },
- { "TEXCOORD", 0, DXGI_FORMAT_R32G32_FLOAT, 0, 8, D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA, 0 },
- { "COLOR", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 0, 16, D3D12_INPUT_CLASSIFICATION_PER_VERTEX_DATA, 0 },
- };
- D3D12_RenderData *data = (D3D12_RenderData *)renderer->driverdata;
- D3D12_GRAPHICS_PIPELINE_STATE_DESC pipelineDesc;
- ID3D12PipelineState *pipelineState = NULL;
- D3D12_PipelineState *pipelineStates;
- HRESULT result = S_OK;
- SDL_zero(pipelineDesc);
- pipelineDesc.pRootSignature = data->rootSignatures[D3D12_GetRootSignatureType(shader)];
- D3D12_GetVertexShader(shader, &pipelineDesc.VS);
- D3D12_GetPixelShader(shader, &pipelineDesc.PS);
- D3D12_CreateBlendState(renderer, blendMode, &pipelineDesc.BlendState);
- pipelineDesc.SampleMask = 0xffffffff;
- pipelineDesc.RasterizerState.AntialiasedLineEnable = FALSE;
- pipelineDesc.RasterizerState.CullMode = D3D12_CULL_MODE_NONE;
- pipelineDesc.RasterizerState.DepthBias = 0;
- pipelineDesc.RasterizerState.DepthBiasClamp = 0.0f;
- pipelineDesc.RasterizerState.DepthClipEnable = TRUE;
- pipelineDesc.RasterizerState.FillMode = D3D12_FILL_MODE_SOLID;
- pipelineDesc.RasterizerState.FrontCounterClockwise = FALSE;
- pipelineDesc.RasterizerState.MultisampleEnable = FALSE;
- pipelineDesc.RasterizerState.SlopeScaledDepthBias = 0.0f;
- pipelineDesc.InputLayout.pInputElementDescs = vertexDesc;
- pipelineDesc.InputLayout.NumElements = 3;
- pipelineDesc.PrimitiveTopologyType = topology;
- pipelineDesc.NumRenderTargets = 1;
- pipelineDesc.RTVFormats[0] = rtvFormat;
- pipelineDesc.SampleDesc.Count = 1;
- pipelineDesc.SampleDesc.Quality = 0;
- result = D3D_CALL(data->d3dDevice, CreateGraphicsPipelineState,
- &pipelineDesc,
- D3D_GUID(SDL_IID_ID3D12PipelineState),
- (void **)&pipelineState);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateGraphicsPipelineState"), result);
- return NULL;
- }
- pipelineStates = (D3D12_PipelineState *)SDL_realloc(data->pipelineStates, (data->pipelineStateCount + 1) * sizeof(*pipelineStates));
- if (!pipelineStates) {
- SAFE_RELEASE(pipelineState);
- return NULL;
- }
- pipelineStates[data->pipelineStateCount].shader = shader;
- pipelineStates[data->pipelineStateCount].blendMode = blendMode;
- pipelineStates[data->pipelineStateCount].topology = topology;
- pipelineStates[data->pipelineStateCount].rtvFormat = rtvFormat;
- pipelineStates[data->pipelineStateCount].pipelineState = pipelineState;
- data->pipelineStates = pipelineStates;
- ++data->pipelineStateCount;
- return &pipelineStates[data->pipelineStateCount - 1];
- }
- static HRESULT D3D12_CreateVertexBuffer(D3D12_RenderData *data, size_t vbidx, size_t size)
- {
- D3D12_HEAP_PROPERTIES vbufferHeapProps;
- D3D12_RESOURCE_DESC vbufferDesc;
- HRESULT result;
- SAFE_RELEASE(data->vertexBuffers[vbidx].resource);
- SDL_zero(vbufferHeapProps);
- vbufferHeapProps.Type = D3D12_HEAP_TYPE_UPLOAD;
- vbufferHeapProps.CreationNodeMask = 1;
- vbufferHeapProps.VisibleNodeMask = 1;
- SDL_zero(vbufferDesc);
- vbufferDesc.Dimension = D3D12_RESOURCE_DIMENSION_BUFFER;
- vbufferDesc.Alignment = D3D12_DEFAULT_RESOURCE_PLACEMENT_ALIGNMENT;
- vbufferDesc.Width = size;
- vbufferDesc.Height = 1;
- vbufferDesc.DepthOrArraySize = 1;
- vbufferDesc.MipLevels = 1;
- vbufferDesc.Format = DXGI_FORMAT_UNKNOWN;
- vbufferDesc.SampleDesc.Count = 1;
- vbufferDesc.SampleDesc.Quality = 0;
- vbufferDesc.Layout = D3D12_TEXTURE_LAYOUT_ROW_MAJOR;
- vbufferDesc.Flags = D3D12_RESOURCE_FLAG_NONE;
- result = D3D_CALL(data->d3dDevice, CreateCommittedResource,
- &vbufferHeapProps,
- D3D12_HEAP_FLAG_NONE,
- &vbufferDesc,
- D3D12_RESOURCE_STATE_GENERIC_READ,
- NULL,
- D3D_GUID(SDL_IID_ID3D12Resource),
- (void **)&data->vertexBuffers[vbidx].resource);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreatePlacedResource [vertex buffer]"), result);
- return result;
- }
- data->vertexBuffers[vbidx].view.BufferLocation = D3D_CALL(data->vertexBuffers[vbidx].resource, GetGPUVirtualAddress);
- data->vertexBuffers[vbidx].view.StrideInBytes = sizeof(VertexPositionColor);
- data->vertexBuffers[vbidx].size = size;
- return result;
- }
- /* Create resources that depend on the device. */
- static HRESULT D3D12_CreateDeviceResources(SDL_Renderer *renderer)
- {
- #if !defined(SDL_PLATFORM_XBOXONE) && !defined(SDL_PLATFORM_XBOXSERIES)
- typedef HRESULT(WINAPI * PFN_CREATE_DXGI_FACTORY)(UINT flags, REFIID riid, void **ppFactory);
- PFN_CREATE_DXGI_FACTORY CreateDXGIFactoryFunc;
- PFN_D3D12_CREATE_DEVICE D3D12CreateDeviceFunc;
- #endif
- typedef HANDLE(WINAPI * PFN_CREATE_EVENT_EX)(LPSECURITY_ATTRIBUTES lpEventAttributes, LPCWSTR lpName, DWORD dwFlags, DWORD dwDesiredAccess);
- PFN_CREATE_EVENT_EX CreateEventExFunc;
- D3D12_RenderData *data = (D3D12_RenderData *)renderer->driverdata;
- ID3D12Device *d3dDevice = NULL;
- HRESULT result = S_OK;
- UINT creationFlags = 0;
- int i;
- SDL_bool createDebug;
- D3D12_COMMAND_QUEUE_DESC queueDesc;
- D3D12_DESCRIPTOR_HEAP_DESC descriptorHeapDesc;
- D3D12_SAMPLER_DESC samplerDesc;
- ID3D12DescriptorHeap *rootDescriptorHeaps[2];
- /* See if we need debug interfaces */
- createDebug = SDL_GetHintBoolean(SDL_HINT_RENDER_DIRECT3D11_DEBUG, SDL_FALSE);
- #ifdef SDL_PLATFORM_GDK
- CreateEventExFunc = CreateEventExW;
- #else
- /* CreateEventEx() arrived in Vista, so we need to load it with GetProcAddress for XP. */
- {
- HMODULE kernel32 = GetModuleHandle(TEXT("kernel32.dll"));
- CreateEventExFunc = NULL;
- if (kernel32) {
- CreateEventExFunc = (PFN_CREATE_EVENT_EX)GetProcAddress(kernel32, "CreateEventExW");
- }
- }
- #endif
- if (!CreateEventExFunc) {
- result = E_FAIL;
- goto done;
- }
- #if !defined(SDL_PLATFORM_XBOXONE) && !defined(SDL_PLATFORM_XBOXSERIES)
- data->hDXGIMod = SDL_LoadObject("dxgi.dll");
- if (!data->hDXGIMod) {
- result = E_FAIL;
- goto done;
- }
- CreateDXGIFactoryFunc = (PFN_CREATE_DXGI_FACTORY)SDL_LoadFunction(data->hDXGIMod, "CreateDXGIFactory2");
- if (!CreateDXGIFactoryFunc) {
- result = E_FAIL;
- goto done;
- }
- data->hD3D12Mod = SDL_LoadObject("D3D12.dll");
- if (!data->hD3D12Mod) {
- result = E_FAIL;
- goto done;
- }
- D3D12CreateDeviceFunc = (PFN_D3D12_CREATE_DEVICE)SDL_LoadFunction(data->hD3D12Mod, "D3D12CreateDevice");
- if (!D3D12CreateDeviceFunc) {
- result = E_FAIL;
- goto done;
- }
- if (createDebug) {
- PFN_D3D12_GET_DEBUG_INTERFACE D3D12GetDebugInterfaceFunc;
- D3D12GetDebugInterfaceFunc = (PFN_D3D12_GET_DEBUG_INTERFACE)SDL_LoadFunction(data->hD3D12Mod, "D3D12GetDebugInterface");
- if (!D3D12GetDebugInterfaceFunc) {
- result = E_FAIL;
- goto done;
- }
- if (SUCCEEDED(D3D12GetDebugInterfaceFunc(D3D_GUID(SDL_IID_ID3D12Debug), (void **)&data->debugInterface))) {
- D3D_CALL(data->debugInterface, EnableDebugLayer);
- }
- }
- #endif /*!defined(SDL_PLATFORM_XBOXONE) && !defined(SDL_PLATFORM_XBOXSERIES)*/
- #if defined(SDL_PLATFORM_XBOXONE) || defined(SDL_PLATFORM_XBOXSERIES)
- result = D3D12_XBOX_CreateDevice(&d3dDevice, createDebug);
- if (FAILED(result)) {
- /* SDL Error is set by D3D12_XBOX_CreateDevice */
- goto done;
- }
- #else
- if (createDebug) {
- #ifdef __IDXGIInfoQueue_INTERFACE_DEFINED__
- IDXGIInfoQueue *dxgiInfoQueue = NULL;
- PFN_CREATE_DXGI_FACTORY DXGIGetDebugInterfaceFunc;
- /* If the debug hint is set, also create the DXGI factory in debug mode */
- DXGIGetDebugInterfaceFunc = (PFN_CREATE_DXGI_FACTORY)SDL_LoadFunction(data->hDXGIMod, "DXGIGetDebugInterface1");
- if (!DXGIGetDebugInterfaceFunc) {
- result = E_FAIL;
- goto done;
- }
- result = DXGIGetDebugInterfaceFunc(0, D3D_GUID(SDL_IID_IDXGIDebug1), (void **)&data->dxgiDebug);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("DXGIGetDebugInterface1"), result);
- goto done;
- }
- result = DXGIGetDebugInterfaceFunc(0, D3D_GUID(SDL_IID_IDXGIInfoQueue), (void **)&dxgiInfoQueue);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("DXGIGetDebugInterface1"), result);
- goto done;
- }
- D3D_CALL(dxgiInfoQueue, SetBreakOnSeverity, SDL_DXGI_DEBUG_ALL, DXGI_INFO_QUEUE_MESSAGE_SEVERITY_ERROR, TRUE);
- D3D_CALL(dxgiInfoQueue, SetBreakOnSeverity, SDL_DXGI_DEBUG_ALL, DXGI_INFO_QUEUE_MESSAGE_SEVERITY_CORRUPTION, TRUE);
- SAFE_RELEASE(dxgiInfoQueue);
- #endif /* __IDXGIInfoQueue_INTERFACE_DEFINED__ */
- creationFlags = DXGI_CREATE_FACTORY_DEBUG;
- }
- result = CreateDXGIFactoryFunc(creationFlags, D3D_GUID(SDL_IID_IDXGIFactory6), (void **)&data->dxgiFactory);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("CreateDXGIFactory"), result);
- goto done;
- }
- /* Prefer a high performance adapter if there are multiple choices */
- result = D3D_CALL(data->dxgiFactory, EnumAdapterByGpuPreference,
- 0,
- DXGI_GPU_PREFERENCE_HIGH_PERFORMANCE,
- D3D_GUID(SDL_IID_IDXGIAdapter4),
- (void **)&data->dxgiAdapter);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("D3D12CreateDevice"), result);
- goto done;
- }
- result = D3D12CreateDeviceFunc((IUnknown *)data->dxgiAdapter,
- D3D_FEATURE_LEVEL_11_0, /* Request minimum feature level 11.0 for maximum compatibility */
- D3D_GUID(SDL_IID_ID3D12Device1),
- (void **)&d3dDevice);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("D3D12CreateDevice"), result);
- goto done;
- }
- /* Setup the info queue if in debug mode */
- if (createDebug) {
- ID3D12InfoQueue *infoQueue = NULL;
- D3D12_MESSAGE_SEVERITY severities[] = { D3D12_MESSAGE_SEVERITY_INFO };
- D3D12_INFO_QUEUE_FILTER filter;
- result = D3D_CALL(d3dDevice, QueryInterface, D3D_GUID(SDL_IID_ID3D12InfoQueue), (void **)&infoQueue);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device to ID3D12InfoQueue"), result);
- goto done;
- }
- SDL_zero(filter);
- filter.DenyList.NumSeverities = 1;
- filter.DenyList.pSeverityList = severities;
- D3D_CALL(infoQueue, PushStorageFilter, &filter);
- D3D_CALL(infoQueue, SetBreakOnSeverity, D3D12_MESSAGE_SEVERITY_ERROR, TRUE);
- D3D_CALL(infoQueue, SetBreakOnSeverity, D3D12_MESSAGE_SEVERITY_CORRUPTION, TRUE);
- SAFE_RELEASE(infoQueue);
- }
- #endif /*!defined(SDL_PLATFORM_XBOXONE) && !defined(SDL_PLATFORM_XBOXSERIES)*/
- result = D3D_CALL(d3dDevice, QueryInterface, D3D_GUID(SDL_IID_ID3D12Device1), (void **)&data->d3dDevice);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device to ID3D12Device1"), result);
- goto done;
- }
- /* Create a command queue */
- SDL_zero(queueDesc);
- queueDesc.Flags = D3D12_COMMAND_QUEUE_FLAG_NONE;
- queueDesc.Type = D3D12_COMMAND_LIST_TYPE_DIRECT;
- result = D3D_CALL(data->d3dDevice, CreateCommandQueue,
- &queueDesc,
- D3D_GUID(SDL_IID_ID3D12CommandQueue),
- (void **)&data->commandQueue);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateCommandQueue"), result);
- goto done;
- }
- /* Create the descriptor heaps for the render target view, texture SRVs, and samplers */
- SDL_zero(descriptorHeapDesc);
- descriptorHeapDesc.NumDescriptors = SDL_D3D12_NUM_BUFFERS;
- descriptorHeapDesc.Type = D3D12_DESCRIPTOR_HEAP_TYPE_RTV;
- result = D3D_CALL(data->d3dDevice, CreateDescriptorHeap,
- &descriptorHeapDesc,
- D3D_GUID(SDL_IID_ID3D12DescriptorHeap),
- (void **)&data->rtvDescriptorHeap);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateDescriptorHeap [rtv]"), result);
- goto done;
- }
- data->rtvDescriptorSize = D3D_CALL(d3dDevice, GetDescriptorHandleIncrementSize, D3D12_DESCRIPTOR_HEAP_TYPE_RTV);
- descriptorHeapDesc.NumDescriptors = SDL_D3D12_MAX_NUM_TEXTURES;
- result = D3D_CALL(data->d3dDevice, CreateDescriptorHeap,
- &descriptorHeapDesc,
- D3D_GUID(SDL_IID_ID3D12DescriptorHeap),
- (void **)&data->textureRTVDescriptorHeap);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateDescriptorHeap [texture rtv]"), result);
- goto done;
- }
- SDL_zero(descriptorHeapDesc);
- descriptorHeapDesc.NumDescriptors = SDL_D3D12_MAX_NUM_TEXTURES;
- descriptorHeapDesc.Type = D3D12_DESCRIPTOR_HEAP_TYPE_CBV_SRV_UAV;
- descriptorHeapDesc.Flags = D3D12_DESCRIPTOR_HEAP_FLAG_SHADER_VISIBLE;
- result = D3D_CALL(data->d3dDevice, CreateDescriptorHeap,
- &descriptorHeapDesc,
- D3D_GUID(SDL_IID_ID3D12DescriptorHeap),
- (void **)&data->srvDescriptorHeap);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateDescriptorHeap [srv]"), result);
- goto done;
- }
- rootDescriptorHeaps[0] = data->srvDescriptorHeap;
- data->srvDescriptorSize = D3D_CALL(d3dDevice, GetDescriptorHandleIncrementSize, D3D12_DESCRIPTOR_HEAP_TYPE_CBV_SRV_UAV);
- SDL_zero(descriptorHeapDesc);
- descriptorHeapDesc.NumDescriptors = 2;
- descriptorHeapDesc.Type = D3D12_DESCRIPTOR_HEAP_TYPE_SAMPLER;
- descriptorHeapDesc.Flags = D3D12_DESCRIPTOR_HEAP_FLAG_SHADER_VISIBLE;
- result = D3D_CALL(data->d3dDevice, CreateDescriptorHeap,
- &descriptorHeapDesc,
- D3D_GUID(SDL_IID_ID3D12DescriptorHeap),
- (void **)&data->samplerDescriptorHeap);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateDescriptorHeap [sampler]"), result);
- goto done;
- }
- rootDescriptorHeaps[1] = data->samplerDescriptorHeap;
- data->samplerDescriptorSize = D3D_CALL(d3dDevice, GetDescriptorHandleIncrementSize, D3D12_DESCRIPTOR_HEAP_TYPE_SAMPLER);
- /* Create a command allocator for each back buffer */
- for (i = 0; i < SDL_D3D12_NUM_BUFFERS; ++i) {
- result = D3D_CALL(data->d3dDevice, CreateCommandAllocator,
- D3D12_COMMAND_LIST_TYPE_DIRECT,
- D3D_GUID(SDL_IID_ID3D12CommandAllocator),
- (void **)&data->commandAllocators[i]);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateCommandAllocator"), result);
- goto done;
- }
- }
- /* Create the command list */
- result = D3D_CALL(data->d3dDevice, CreateCommandList,
- 0,
- D3D12_COMMAND_LIST_TYPE_DIRECT,
- data->commandAllocators[0],
- NULL,
- D3D_GUID(SDL_IID_ID3D12GraphicsCommandList2),
- (void **)&data->commandList);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateCommandList"), result);
- goto done;
- }
- /* Set the descriptor heaps to the correct initial value */
- D3D_CALL(data->commandList, SetDescriptorHeaps, 2, rootDescriptorHeaps);
- /* Create the fence and fence event */
- result = D3D_CALL(data->d3dDevice, CreateFence,
- data->fenceValue,
- D3D12_FENCE_FLAG_NONE,
- D3D_GUID(SDL_IID_ID3D12Fence),
- (void **)&data->fence);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateFence"), result);
- goto done;
- }
- data->fenceValue++;
- data->fenceEvent = CreateEventExFunc(NULL, NULL, 0, EVENT_MODIFY_STATE | SYNCHRONIZE);
- if (!data->fenceEvent) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("CreateEventEx"), result);
- goto done;
- }
- /* Create all the root signatures */
- for (i = 0; i < NUM_ROOTSIGS; ++i) {
- D3D12_SHADER_BYTECODE rootSigData;
- D3D12_GetRootSignatureData((D3D12_RootSignature)i, &rootSigData);
- result = D3D_CALL(data->d3dDevice, CreateRootSignature,
- 0,
- rootSigData.pShaderBytecode,
- rootSigData.BytecodeLength,
- D3D_GUID(SDL_IID_ID3D12RootSignature),
- (void **)&data->rootSignatures[i]);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateRootSignature"), result);
- goto done;
- }
- }
- #if 0 /* Actually, don't do this, it causes a huge startup time on some systems */
- {
- const SDL_BlendMode defaultBlendModes[] = {
- SDL_BLENDMODE_NONE,
- SDL_BLENDMODE_BLEND,
- SDL_BLENDMODE_ADD,
- SDL_BLENDMODE_MOD,
- SDL_BLENDMODE_MUL
- };
- const DXGI_FORMAT defaultRTVFormats[] = {
- DXGI_FORMAT_R16G16B16A16_FLOAT,
- DXGI_FORMAT_R10G10B10A2_UNORM,
- DXGI_FORMAT_B8G8R8A8_UNORM,
- DXGI_FORMAT_B8G8R8X8_UNORM,
- DXGI_FORMAT_R8_UNORM
- };
- int i, j, k, l;
- /* Create all the default pipeline state objects
- (will add everything except custom blend states) */
- for (i = 0; i < NUM_SHADERS; ++i) {
- for (j = 0; j < SDL_arraysize(defaultBlendModes); ++j) {
- for (k = D3D12_PRIMITIVE_TOPOLOGY_TYPE_POINT; k < D3D12_PRIMITIVE_TOPOLOGY_TYPE_PATCH; ++k) {
- for (l = 0; l < SDL_arraysize(defaultRTVFormats); ++l) {
- if (!D3D12_CreatePipelineState(renderer, (D3D12_Shader)i, defaultBlendModes[j], (D3D12_PRIMITIVE_TOPOLOGY_TYPE)k, defaultRTVFormats[l])) {
- /* D3D12_CreatePipelineState will set the SDL error, if it fails */
- goto done;
- }
- }
- }
- }
- }
- }
- #endif /* 0 */
- /* Create default vertex buffers */
- for (i = 0; i < SDL_D3D12_NUM_VERTEX_BUFFERS; ++i) {
- D3D12_CreateVertexBuffer(data, i, D3D12_DEFAULT_RESOURCE_PLACEMENT_ALIGNMENT);
- }
- /* Create samplers to use when drawing textures: */
- SDL_zero(samplerDesc);
- samplerDesc.Filter = D3D12_FILTER_MIN_MAG_MIP_POINT;
- samplerDesc.AddressU = D3D12_TEXTURE_ADDRESS_MODE_CLAMP;
- samplerDesc.AddressV = D3D12_TEXTURE_ADDRESS_MODE_CLAMP;
- samplerDesc.AddressW = D3D12_TEXTURE_ADDRESS_MODE_CLAMP;
- samplerDesc.MipLODBias = 0.0f;
- samplerDesc.MaxAnisotropy = 1;
- samplerDesc.ComparisonFunc = D3D12_COMPARISON_FUNC_ALWAYS;
- samplerDesc.MinLOD = 0.0f;
- samplerDesc.MaxLOD = D3D12_FLOAT32_MAX;
- D3D_CALL_RET(data->samplerDescriptorHeap, GetCPUDescriptorHandleForHeapStart, &data->nearestPixelSampler);
- D3D_CALL(data->d3dDevice, CreateSampler, &samplerDesc, data->nearestPixelSampler);
- samplerDesc.Filter = D3D12_FILTER_MIN_MAG_MIP_LINEAR;
- data->linearSampler.ptr = data->nearestPixelSampler.ptr + data->samplerDescriptorSize;
- D3D_CALL(data->d3dDevice, CreateSampler, &samplerDesc, data->linearSampler);
- /* Initialize the pool allocator for SRVs */
- for (i = 0; i < SDL_D3D12_MAX_NUM_TEXTURES; ++i) {
- data->srvPoolNodes[i].index = (SIZE_T)i;
- if (i != SDL_D3D12_MAX_NUM_TEXTURES - 1) {
- data->srvPoolNodes[i].next = &data->srvPoolNodes[i + 1];
- }
- }
- data->srvPoolHead = &data->srvPoolNodes[0];
- SDL_PropertiesID props = SDL_GetRendererProperties(renderer);
- SDL_SetProperty(props, SDL_PROP_RENDERER_D3D12_DEVICE_POINTER, data->d3dDevice);
- SDL_SetProperty(props, SDL_PROP_RENDERER_D3D12_COMMAND_QUEUE_POINTER, data->commandQueue);
- done:
- SAFE_RELEASE(d3dDevice);
- return result;
- }
- static DXGI_MODE_ROTATION D3D12_GetCurrentRotation()
- {
- /* FIXME */
- return DXGI_MODE_ROTATION_IDENTITY;
- }
- static BOOL D3D12_IsDisplayRotated90Degrees(DXGI_MODE_ROTATION rotation)
- {
- switch (rotation) {
- case DXGI_MODE_ROTATION_ROTATE90:
- case DXGI_MODE_ROTATION_ROTATE270:
- return TRUE;
- default:
- return FALSE;
- }
- }
- static int D3D12_GetRotationForCurrentRenderTarget(SDL_Renderer *renderer)
- {
- D3D12_RenderData *data = (D3D12_RenderData *)renderer->driverdata;
- if (data->textureRenderTarget) {
- return DXGI_MODE_ROTATION_IDENTITY;
- } else {
- return data->rotation;
- }
- }
- static int D3D12_GetViewportAlignedD3DRect(SDL_Renderer *renderer, const SDL_Rect *sdlRect, D3D12_RECT *outRect, BOOL includeViewportOffset)
- {
- D3D12_RenderData *data = (D3D12_RenderData *)renderer->driverdata;
- const int rotation = D3D12_GetRotationForCurrentRenderTarget(renderer);
- const SDL_Rect *viewport = &data->currentViewport;
- switch (rotation) {
- case DXGI_MODE_ROTATION_IDENTITY:
- outRect->left = sdlRect->x;
- outRect->right = (LONG)sdlRect->x + sdlRect->w;
- outRect->top = sdlRect->y;
- outRect->bottom = (LONG)sdlRect->y + sdlRect->h;
- if (includeViewportOffset) {
- outRect->left += viewport->x;
- outRect->right += viewport->x;
- outRect->top += viewport->y;
- outRect->bottom += viewport->y;
- }
- break;
- case DXGI_MODE_ROTATION_ROTATE270:
- outRect->left = sdlRect->y;
- outRect->right = (LONG)sdlRect->y + sdlRect->h;
- outRect->top = viewport->w - sdlRect->x - sdlRect->w;
- outRect->bottom = viewport->w - sdlRect->x;
- break;
- case DXGI_MODE_ROTATION_ROTATE180:
- outRect->left = viewport->w - sdlRect->x - sdlRect->w;
- outRect->right = viewport->w - sdlRect->x;
- outRect->top = viewport->h - sdlRect->y - sdlRect->h;
- outRect->bottom = viewport->h - sdlRect->y;
- break;
- case DXGI_MODE_ROTATION_ROTATE90:
- outRect->left = viewport->h - sdlRect->y - sdlRect->h;
- outRect->right = viewport->h - sdlRect->y;
- outRect->top = sdlRect->x;
- outRect->bottom = (LONG)sdlRect->x + sdlRect->h;
- break;
- default:
- return SDL_SetError("The physical display is in an unknown or unsupported rotation");
- }
- return 0;
- }
- #if !defined(SDL_PLATFORM_XBOXONE) && !defined(SDL_PLATFORM_XBOXSERIES)
- static HRESULT D3D12_CreateSwapChain(SDL_Renderer *renderer, int w, int h)
- {
- D3D12_RenderData *data = (D3D12_RenderData *)renderer->driverdata;
- IDXGISwapChain1 *swapChain = NULL;
- HRESULT result = S_OK;
- /* Create a swap chain using the same adapter as the existing Direct3D device. */
- DXGI_SWAP_CHAIN_DESC1 swapChainDesc;
- SDL_zero(swapChainDesc);
- swapChainDesc.Width = w;
- swapChainDesc.Height = h;
- switch (renderer->output_colorspace) {
- case SDL_COLORSPACE_SCRGB:
- swapChainDesc.Format = DXGI_FORMAT_R16G16B16A16_FLOAT;
- data->renderTargetFormat = DXGI_FORMAT_R16G16B16A16_FLOAT;
- break;
- case SDL_COLORSPACE_HDR10:
- swapChainDesc.Format = DXGI_FORMAT_R10G10B10A2_UNORM;
- data->renderTargetFormat = DXGI_FORMAT_R10G10B10A2_UNORM;
- break;
- default:
- swapChainDesc.Format = DXGI_FORMAT_B8G8R8A8_UNORM; /* This is the most common swap chain format. */
- data->renderTargetFormat = DXGI_FORMAT_B8G8R8A8_UNORM;
- break;
- }
- swapChainDesc.Stereo = FALSE;
- swapChainDesc.SampleDesc.Count = 1; /* Don't use multi-sampling. */
- swapChainDesc.SampleDesc.Quality = 0;
- swapChainDesc.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
- swapChainDesc.BufferCount = 2; /* Use double-buffering to minimize latency. */
- if (WIN_IsWindows8OrGreater()) {
- swapChainDesc.Scaling = DXGI_SCALING_NONE;
- } else {
- swapChainDesc.Scaling = DXGI_SCALING_STRETCH;
- }
- swapChainDesc.SwapEffect = DXGI_SWAP_EFFECT_FLIP_SEQUENTIAL; /* All Windows Store apps must use this SwapEffect. */
- swapChainDesc.Flags = DXGI_SWAP_CHAIN_FLAG_FRAME_LATENCY_WAITABLE_OBJECT | /* To support SetMaximumFrameLatency */
- DXGI_SWAP_CHAIN_FLAG_ALLOW_TEARING; /* To support presenting with allow tearing on */
- HWND hwnd = (HWND)SDL_GetProperty(SDL_GetWindowProperties(renderer->window), SDL_PROP_WINDOW_WIN32_HWND_POINTER, NULL);
- result = D3D_CALL(data->dxgiFactory, CreateSwapChainForHwnd,
- (IUnknown *)data->commandQueue,
- hwnd,
- &swapChainDesc,
- NULL,
- NULL, /* Allow on all displays. */
- &swapChain);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("IDXGIFactory2::CreateSwapChainForHwnd"), result);
- goto done;
- }
- D3D_CALL(data->dxgiFactory, MakeWindowAssociation, hwnd, DXGI_MWA_NO_WINDOW_CHANGES);
- result = D3D_CALL(swapChain, QueryInterface, D3D_GUID(SDL_IID_IDXGISwapChain4), (void **)&data->swapChain);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("IDXGISwapChain1::QueryInterface"), result);
- goto done;
- }
- /* Ensure that the swapchain does not queue more than one frame at a time. This both reduces latency
- * and ensures that the application will only render after each VSync, minimizing power consumption.
- */
- result = D3D_CALL(data->swapChain, SetMaximumFrameLatency, 1);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("IDXGISwapChain4::SetMaximumFrameLatency"), result);
- goto done;
- }
- data->swapEffect = swapChainDesc.SwapEffect;
- data->swapFlags = swapChainDesc.Flags;
- UINT colorspace_support = 0;
- DXGI_COLOR_SPACE_TYPE colorspace;
- switch (renderer->output_colorspace) {
- case SDL_COLORSPACE_SCRGB:
- colorspace = DXGI_COLOR_SPACE_RGB_FULL_G10_NONE_P709;
- break;
- case SDL_COLORSPACE_HDR10:
- colorspace = DXGI_COLOR_SPACE_RGB_FULL_G2084_NONE_P2020;
- break;
- default:
- /* sRGB */
- colorspace = DXGI_COLOR_SPACE_RGB_FULL_G22_NONE_P709;
- break;
- }
- if (SUCCEEDED(D3D_CALL(data->swapChain, CheckColorSpaceSupport, colorspace, &colorspace_support)) &&
- (colorspace_support & DXGI_SWAP_CHAIN_COLOR_SPACE_SUPPORT_FLAG_PRESENT)) {
- result = D3D_CALL(data->swapChain, SetColorSpace1, colorspace);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("IDXGISwapChain3::SetColorSpace1"), result);
- goto done;
- }
- } else {
- /* Not the default, we're not going to be able to present in this colorspace */
- SDL_SetError("Unsupported output colorspace");
- result = DXGI_ERROR_UNSUPPORTED;
- }
- done:
- SAFE_RELEASE(swapChain);
- return result;
- }
- #endif
- static HRESULT D3D12_UpdateForWindowSizeChange(SDL_Renderer *renderer);
- HRESULT
- D3D12_HandleDeviceLost(SDL_Renderer *renderer)
- {
- HRESULT result = S_OK;
- D3D12_ReleaseAll(renderer);
- result = D3D12_CreateDeviceResources(renderer);
- if (FAILED(result)) {
- /* D3D12_CreateDeviceResources will set the SDL error */
- return result;
- }
- result = D3D12_UpdateForWindowSizeChange(renderer);
- if (FAILED(result)) {
- /* D3D12_UpdateForWindowSizeChange will set the SDL error */
- return result;
- }
- /* Let the application know that the device has been reset */
- {
- SDL_Event event;
- event.type = SDL_EVENT_RENDER_DEVICE_RESET;
- event.common.timestamp = 0;
- SDL_PushEvent(&event);
- }
- return S_OK;
- }
- /* Initialize all resources that change when the window's size changes. */
- static HRESULT D3D12_CreateWindowSizeDependentResources(SDL_Renderer *renderer)
- {
- D3D12_RenderData *data = (D3D12_RenderData *)renderer->driverdata;
- HRESULT result = S_OK;
- int i, w, h;
- D3D12_RENDER_TARGET_VIEW_DESC rtvDesc;
- D3D12_CPU_DESCRIPTOR_HANDLE rtvDescriptor;
- /* Release resources in the current command list */
- D3D12_IssueBatch(data);
- D3D_CALL(data->commandList, OMSetRenderTargets, 0, NULL, FALSE, NULL);
- /* Release render targets */
- for (i = 0; i < SDL_D3D12_NUM_BUFFERS; ++i) {
- SAFE_RELEASE(data->renderTargets[i]);
- }
- /* The width and height of the swap chain must be based on the display's
- * non-rotated size.
- */
- SDL_GetWindowSizeInPixels(renderer->window, &w, &h);
- data->rotation = D3D12_GetCurrentRotation();
- if (D3D12_IsDisplayRotated90Degrees(data->rotation)) {
- int tmp = w;
- w = h;
- h = tmp;
- }
- #if !defined(SDL_PLATFORM_XBOXONE) && !defined(SDL_PLATFORM_XBOXSERIES)
- if (data->swapChain) {
- /* If the swap chain already exists, resize it. */
- result = D3D_CALL(data->swapChain, ResizeBuffers,
- 0,
- w, h,
- DXGI_FORMAT_UNKNOWN,
- data->swapFlags);
- if (result == DXGI_ERROR_DEVICE_REMOVED) {
- /* If the device was removed for any reason, a new device and swap chain will need to be created. */
- D3D12_HandleDeviceLost(renderer);
- /* Everything is set up now. Do not continue execution of this method. HandleDeviceLost will reenter this method
- * and correctly set up the new device.
- */
- goto done;
- } else if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("IDXGISwapChain::ResizeBuffers"), result);
- goto done;
- }
- } else {
- result = D3D12_CreateSwapChain(renderer, w, h);
- if (FAILED(result) || !data->swapChain) {
- goto done;
- }
- }
- /* Set the proper rotation for the swap chain. */
- if (WIN_IsWindows8OrGreater()) {
- if (data->swapEffect == DXGI_SWAP_EFFECT_FLIP_SEQUENTIAL) {
- result = D3D_CALL(data->swapChain, SetRotation, data->rotation); /* NOLINT(clang-analyzer-core.NullDereference) */
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("IDXGISwapChain4::SetRotation"), result);
- goto done;
- }
- }
- }
- #endif /*!defined(SDL_PLATFORM_XBOXONE) && !defined(SDL_PLATFORM_XBOXSERIES)*/
- /* Get each back buffer render target and create render target views */
- for (i = 0; i < SDL_D3D12_NUM_BUFFERS; ++i) {
- #if defined(SDL_PLATFORM_XBOXONE) || defined(SDL_PLATFORM_XBOXSERIES)
- result = D3D12_XBOX_CreateBackBufferTarget(data->d3dDevice, renderer->window->w, renderer->window->h, (void **)&data->renderTargets[i]);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("D3D12_XBOX_CreateBackBufferTarget"), result);
- goto done;
- }
- #else
- result = D3D_CALL(data->swapChain, GetBuffer, /* NOLINT(clang-analyzer-core.NullDereference) */
- i,
- D3D_GUID(SDL_IID_ID3D12Resource),
- (void **)&data->renderTargets[i]);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("IDXGISwapChain4::GetBuffer"), result);
- goto done;
- }
- #endif
- SDL_zero(rtvDesc);
- rtvDesc.Format = data->renderTargetFormat;
- rtvDesc.ViewDimension = D3D12_RTV_DIMENSION_TEXTURE2D;
- SDL_zero(rtvDescriptor);
- D3D_CALL_RET(data->rtvDescriptorHeap, GetCPUDescriptorHandleForHeapStart, &rtvDescriptor);
- rtvDescriptor.ptr += i * data->rtvDescriptorSize;
- D3D_CALL(data->d3dDevice, CreateRenderTargetView, data->renderTargets[i], &rtvDesc, rtvDescriptor);
- }
- /* Set back buffer index to current buffer */
- #if defined(SDL_PLATFORM_XBOXONE) || defined(SDL_PLATFORM_XBOXSERIES)
- data->currentBackBufferIndex = 0;
- #else
- data->currentBackBufferIndex = D3D_CALL(data->swapChain, GetCurrentBackBufferIndex);
- #endif
- /* Set the swap chain target immediately, so that a target is always set
- * even before we get to SetDrawState. Without this it's possible to hit
- * null references in places like ReadPixels!
- */
- data->currentRenderTargetView = D3D12_GetCurrentRenderTargetView(renderer);
- D3D_CALL(data->commandList, OMSetRenderTargets, 1, &data->currentRenderTargetView, FALSE, NULL);
- D3D12_TransitionResource(data,
- data->renderTargets[data->currentBackBufferIndex],
- D3D12_RESOURCE_STATE_PRESENT,
- D3D12_RESOURCE_STATE_RENDER_TARGET);
- data->viewportDirty = SDL_TRUE;
- #if defined(SDL_PLATFORM_XBOXONE) || defined(SDL_PLATFORM_XBOXSERIES)
- D3D12_XBOX_StartFrame(data->d3dDevice, &data->frameToken);
- #endif
- done:
- return result;
- }
- /* This method is called when the window's size changes. */
- static HRESULT D3D12_UpdateForWindowSizeChange(SDL_Renderer *renderer)
- {
- D3D12_RenderData *data = (D3D12_RenderData *)renderer->driverdata;
- /* If the GPU has previous work, wait for it to be done first */
- D3D12_WaitForGPU(data);
- return D3D12_CreateWindowSizeDependentResources(renderer);
- }
- static void D3D12_WindowEvent(SDL_Renderer *renderer, const SDL_WindowEvent *event)
- {
- D3D12_RenderData *data = (D3D12_RenderData *)renderer->driverdata;
- if (event->type == SDL_EVENT_WINDOW_PIXEL_SIZE_CHANGED) {
- data->pixelSizeChanged = SDL_TRUE;
- }
- }
- static SDL_bool D3D12_SupportsBlendMode(SDL_Renderer *renderer, SDL_BlendMode blendMode)
- {
- SDL_BlendFactor srcColorFactor = SDL_GetBlendModeSrcColorFactor(blendMode);
- SDL_BlendFactor srcAlphaFactor = SDL_GetBlendModeSrcAlphaFactor(blendMode);
- SDL_BlendOperation colorOperation = SDL_GetBlendModeColorOperation(blendMode);
- SDL_BlendFactor dstColorFactor = SDL_GetBlendModeDstColorFactor(blendMode);
- SDL_BlendFactor dstAlphaFactor = SDL_GetBlendModeDstAlphaFactor(blendMode);
- SDL_BlendOperation alphaOperation = SDL_GetBlendModeAlphaOperation(blendMode);
- if (!GetBlendFunc(srcColorFactor) || !GetBlendFunc(srcAlphaFactor) ||
- !GetBlendEquation(colorOperation) ||
- !GetBlendFunc(dstColorFactor) || !GetBlendFunc(dstAlphaFactor) ||
- !GetBlendEquation(alphaOperation)) {
- return SDL_FALSE;
- }
- return SDL_TRUE;
- }
- static SIZE_T D3D12_GetAvailableSRVIndex(SDL_Renderer *renderer)
- {
- D3D12_RenderData *rendererData = (D3D12_RenderData *)renderer->driverdata;
- if (rendererData->srvPoolHead) {
- SIZE_T index = rendererData->srvPoolHead->index;
- rendererData->srvPoolHead = (D3D12_SRVPoolNode *)(rendererData->srvPoolHead->next);
- return index;
- } else {
- SDL_SetError("[d3d12] Cannot allocate more than %d textures!", SDL_D3D12_MAX_NUM_TEXTURES);
- return SDL_D3D12_MAX_NUM_TEXTURES + 1;
- }
- }
- static void D3D12_FreeSRVIndex(SDL_Renderer *renderer, SIZE_T index)
- {
- D3D12_RenderData *rendererData = (D3D12_RenderData *)renderer->driverdata;
- rendererData->srvPoolNodes[index].next = rendererData->srvPoolHead;
- rendererData->srvPoolHead = &rendererData->srvPoolNodes[index];
- }
- static int GetTextureProperty(SDL_PropertiesID props, const char *name, ID3D12Resource **texture)
- {
- IUnknown *unknown = (IUnknown*)SDL_GetProperty(props, name, NULL);
- if (unknown) {
- HRESULT result = D3D_CALL(unknown, QueryInterface, D3D_GUID(SDL_IID_ID3D12Resource), (void **)texture);
- if (FAILED(result)) {
- return WIN_SetErrorFromHRESULT(name, result);
- }
- }
- return 0;
- }
- static int D3D12_CreateTexture(SDL_Renderer *renderer, SDL_Texture *texture, SDL_PropertiesID create_props)
- {
- D3D12_RenderData *rendererData = (D3D12_RenderData *)renderer->driverdata;
- D3D12_TextureData *textureData;
- HRESULT result;
- DXGI_FORMAT textureFormat = SDLPixelFormatToDXGITextureFormat(texture->format, renderer->output_colorspace);
- D3D12_RESOURCE_DESC textureDesc;
- D3D12_HEAP_PROPERTIES heapProps;
- D3D12_SHADER_RESOURCE_VIEW_DESC resourceViewDesc;
- if (textureFormat == DXGI_FORMAT_UNKNOWN) {
- return SDL_SetError("%s, An unsupported SDL pixel format (0x%x) was specified", __FUNCTION__, texture->format);
- }
- textureData = (D3D12_TextureData *)SDL_calloc(1, sizeof(*textureData));
- if (!textureData) {
- return -1;
- }
- textureData->scaleMode = (texture->scaleMode == SDL_SCALEMODE_NEAREST) ? D3D12_FILTER_MIN_MAG_MIP_POINT : D3D12_FILTER_MIN_MAG_MIP_LINEAR;
- texture->driverdata = textureData;
- textureData->mainTextureFormat = textureFormat;
- SDL_zero(textureDesc);
- textureDesc.Width = texture->w;
- textureDesc.Height = texture->h;
- textureDesc.MipLevels = 1;
- textureDesc.DepthOrArraySize = 1;
- textureDesc.Format = textureFormat;
- textureDesc.SampleDesc.Count = 1;
- textureDesc.SampleDesc.Quality = 0;
- textureDesc.Dimension = D3D12_RESOURCE_DIMENSION_TEXTURE2D;
- textureDesc.Flags = D3D12_RESOURCE_FLAG_NONE;
- /* NV12 textures must have even width and height */
- if (texture->format == SDL_PIXELFORMAT_NV12 ||
- texture->format == SDL_PIXELFORMAT_NV21 ||
- texture->format == SDL_PIXELFORMAT_P010 ||
- texture->format == SDL_PIXELFORMAT_P016) {
- textureDesc.Width = (textureDesc.Width + 1) & ~1;
- textureDesc.Height = (textureDesc.Height + 1) & ~1;
- }
- textureData->w = (int)textureDesc.Width;
- textureData->h = (int)textureDesc.Height;
- textureData->shader = SHADER_RGB;
- if (texture->access == SDL_TEXTUREACCESS_TARGET) {
- textureDesc.Flags = D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET;
- }
- SDL_zero(heapProps);
- heapProps.Type = D3D12_HEAP_TYPE_DEFAULT;
- heapProps.CreationNodeMask = 1;
- heapProps.VisibleNodeMask = 1;
- if (GetTextureProperty(create_props, "d3d12.texture", &textureData->mainTexture) < 0) {
- return -1;
- }
- if (!textureData->mainTexture) {
- result = D3D_CALL(rendererData->d3dDevice, CreateCommittedResource,
- &heapProps,
- D3D12_HEAP_FLAG_NONE,
- &textureDesc,
- D3D12_RESOURCE_STATE_COPY_DEST,
- NULL,
- D3D_GUID(SDL_IID_ID3D12Resource),
- (void **)&textureData->mainTexture);
- if (FAILED(result)) {
- return WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateCommittedResource [texture]"), result);
- }
- }
- textureData->mainResourceState = D3D12_RESOURCE_STATE_COPY_DEST;
- SDL_SetProperty(SDL_GetTextureProperties(texture), SDL_PROP_TEXTURE_D3D12_TEXTURE_POINTER, textureData->mainTexture);
- #if SDL_HAVE_YUV
- if (texture->format == SDL_PIXELFORMAT_YV12 ||
- texture->format == SDL_PIXELFORMAT_IYUV) {
- textureData->yuv = SDL_TRUE;
- textureDesc.Width = (textureDesc.Width + 1) / 2;
- textureDesc.Height = (textureDesc.Height + 1) / 2;
- if (GetTextureProperty(create_props, "d3d12.texture_u", &textureData->mainTextureU) < 0) {
- return -1;
- }
- if (!textureData->mainTextureU) {
- result = D3D_CALL(rendererData->d3dDevice, CreateCommittedResource,
- &heapProps,
- D3D12_HEAP_FLAG_NONE,
- &textureDesc,
- D3D12_RESOURCE_STATE_COPY_DEST,
- NULL,
- D3D_GUID(SDL_IID_ID3D12Resource),
- (void **)&textureData->mainTextureU);
- if (FAILED(result)) {
- return WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateCommittedResource [texture]"), result);
- }
- }
- textureData->mainResourceStateU = D3D12_RESOURCE_STATE_COPY_DEST;
- SDL_SetProperty(SDL_GetTextureProperties(texture), SDL_PROP_TEXTURE_D3D12_TEXTURE_U_POINTER, textureData->mainTextureU);
- if (GetTextureProperty(create_props, "d3d12.texture_v", &textureData->mainTextureV) < 0) {
- return -1;
- }
- if (!textureData->mainTextureV) {
- result = D3D_CALL(rendererData->d3dDevice, CreateCommittedResource,
- &heapProps,
- D3D12_HEAP_FLAG_NONE,
- &textureDesc,
- D3D12_RESOURCE_STATE_COPY_DEST,
- NULL,
- D3D_GUID(SDL_IID_ID3D12Resource),
- (void **)&textureData->mainTextureV);
- if (FAILED(result)) {
- return WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateCommittedResource [texture]"), result);
- }
- }
- textureData->mainResourceStateV = D3D12_RESOURCE_STATE_COPY_DEST;
- SDL_SetProperty(SDL_GetTextureProperties(texture), SDL_PROP_TEXTURE_D3D12_TEXTURE_V_POINTER, textureData->mainTextureV);
- textureData->shader = SHADER_YUV;
- textureData->shader_params = SDL_GetYCbCRtoRGBConversionMatrix(texture->colorspace, texture->w, texture->h, 8);
- if (!textureData->shader_params) {
- return SDL_SetError("Unsupported YUV colorspace");
- }
- }
- if (texture->format == SDL_PIXELFORMAT_NV12 ||
- texture->format == SDL_PIXELFORMAT_NV21 ||
- texture->format == SDL_PIXELFORMAT_P010 ||
- texture->format == SDL_PIXELFORMAT_P016) {
- int bits_per_pixel;
- textureData->nv12 = SDL_TRUE;
- switch (texture->format) {
- case SDL_PIXELFORMAT_NV12:
- textureData->shader = SHADER_NV12;
- break;
- case SDL_PIXELFORMAT_NV21:
- textureData->shader = SHADER_NV21;
- break;
- case SDL_PIXELFORMAT_P010:
- case SDL_PIXELFORMAT_P016:
- if(SDL_COLORSPACEPRIMARIES(texture->colorspace) == SDL_COLOR_PRIMARIES_BT2020 &&
- SDL_COLORSPACETRANSFER(texture->colorspace) == SDL_TRANSFER_CHARACTERISTICS_PQ) {
- textureData->shader = SHADER_HDR10;
- } else {
- return SDL_SetError("Unsupported YUV colorspace");
- }
- break;
- default:
- /* This should never happen because of the check above */
- return SDL_SetError("Unsupported YUV colorspace");
- }
- switch (texture->format) {
- case SDL_PIXELFORMAT_P010:
- bits_per_pixel = 10;
- break;
- case SDL_PIXELFORMAT_P016:
- bits_per_pixel = 16;
- break;
- default:
- bits_per_pixel = 8;
- break;
- }
- textureData->shader_params = SDL_GetYCbCRtoRGBConversionMatrix(texture->colorspace, texture->w, texture->h, bits_per_pixel);
- if (!textureData->shader_params) {
- return SDL_SetError("Unsupported YUV colorspace");
- }
- }
- #endif /* SDL_HAVE_YUV */
- SDL_zero(resourceViewDesc);
- resourceViewDesc.Shader4ComponentMapping = D3D12_DEFAULT_SHADER_4_COMPONENT_MAPPING;
- resourceViewDesc.Format = SDLPixelFormatToDXGIMainResourceViewFormat(texture->format, renderer->output_colorspace);
- resourceViewDesc.ViewDimension = D3D12_SRV_DIMENSION_TEXTURE2D;
- resourceViewDesc.Texture2D.MipLevels = textureDesc.MipLevels;
- textureData->mainSRVIndex = D3D12_GetAvailableSRVIndex(renderer);
- D3D_CALL_RET(rendererData->srvDescriptorHeap, GetCPUDescriptorHandleForHeapStart, &textureData->mainTextureResourceView);
- textureData->mainTextureResourceView.ptr += textureData->mainSRVIndex * rendererData->srvDescriptorSize;
- D3D_CALL(rendererData->d3dDevice, CreateShaderResourceView,
- textureData->mainTexture,
- &resourceViewDesc,
- textureData->mainTextureResourceView);
- #if SDL_HAVE_YUV
- if (textureData->yuv) {
- D3D_CALL_RET(rendererData->srvDescriptorHeap, GetCPUDescriptorHandleForHeapStart, &textureData->mainTextureResourceViewU);
- textureData->mainSRVIndexU = D3D12_GetAvailableSRVIndex(renderer);
- textureData->mainTextureResourceViewU.ptr += textureData->mainSRVIndexU * rendererData->srvDescriptorSize;
- D3D_CALL(rendererData->d3dDevice, CreateShaderResourceView,
- textureData->mainTextureU,
- &resourceViewDesc,
- textureData->mainTextureResourceViewU);
- D3D_CALL_RET(rendererData->srvDescriptorHeap, GetCPUDescriptorHandleForHeapStart, &textureData->mainTextureResourceViewV);
- textureData->mainSRVIndexV = D3D12_GetAvailableSRVIndex(renderer);
- textureData->mainTextureResourceViewV.ptr += textureData->mainSRVIndexV * rendererData->srvDescriptorSize;
- D3D_CALL(rendererData->d3dDevice, CreateShaderResourceView,
- textureData->mainTextureV,
- &resourceViewDesc,
- textureData->mainTextureResourceViewV);
- }
- if (textureData->nv12) {
- D3D12_SHADER_RESOURCE_VIEW_DESC nvResourceViewDesc = resourceViewDesc;
- if (texture->format == SDL_PIXELFORMAT_NV12 || texture->format == SDL_PIXELFORMAT_NV21) {
- nvResourceViewDesc.Format = DXGI_FORMAT_R8G8_UNORM;
- } else if (texture->format == SDL_PIXELFORMAT_P010 || texture->format == SDL_PIXELFORMAT_P016) {
- nvResourceViewDesc.Format = DXGI_FORMAT_R16G16_UNORM;
- }
- nvResourceViewDesc.Texture2D.PlaneSlice = 1;
- D3D_CALL_RET(rendererData->srvDescriptorHeap, GetCPUDescriptorHandleForHeapStart, &textureData->mainTextureResourceViewNV);
- textureData->mainSRVIndexNV = D3D12_GetAvailableSRVIndex(renderer);
- textureData->mainTextureResourceViewNV.ptr += textureData->mainSRVIndexNV * rendererData->srvDescriptorSize;
- D3D_CALL(rendererData->d3dDevice, CreateShaderResourceView,
- textureData->mainTexture,
- &nvResourceViewDesc,
- textureData->mainTextureResourceViewNV);
- }
- #endif /* SDL_HAVE_YUV */
- if (texture->access & SDL_TEXTUREACCESS_TARGET) {
- D3D12_RENDER_TARGET_VIEW_DESC renderTargetViewDesc;
- SDL_zero(renderTargetViewDesc);
- renderTargetViewDesc.Format = textureDesc.Format;
- renderTargetViewDesc.ViewDimension = D3D12_RTV_DIMENSION_TEXTURE2D;
- renderTargetViewDesc.Texture2D.MipSlice = 0;
- D3D_CALL_RET(rendererData->textureRTVDescriptorHeap, GetCPUDescriptorHandleForHeapStart, &textureData->mainTextureRenderTargetView);
- textureData->mainTextureRenderTargetView.ptr += textureData->mainSRVIndex * rendererData->rtvDescriptorSize;
- D3D_CALL(rendererData->d3dDevice, CreateRenderTargetView,
- (ID3D12Resource *)textureData->mainTexture,
- &renderTargetViewDesc,
- textureData->mainTextureRenderTargetView);
- }
- return 0;
- }
- static void D3D12_DestroyTexture(SDL_Renderer *renderer,
- SDL_Texture *texture)
- {
- D3D12_RenderData *rendererData = (D3D12_RenderData *)renderer->driverdata;
- D3D12_TextureData *textureData = (D3D12_TextureData *)texture->driverdata;
- if (!textureData) {
- return;
- }
- /* Because SDL_DestroyTexture might be called while the data is in-flight, we need to issue the batch first
- Unfortunately, this means that deleting a lot of textures mid-frame will have poor performance. */
- D3D12_IssueBatch(rendererData);
- SAFE_RELEASE(textureData->mainTexture);
- SAFE_RELEASE(textureData->stagingBuffer);
- D3D12_FreeSRVIndex(renderer, textureData->mainSRVIndex);
- #if SDL_HAVE_YUV
- SAFE_RELEASE(textureData->mainTextureU);
- SAFE_RELEASE(textureData->mainTextureV);
- if (textureData->yuv) {
- D3D12_FreeSRVIndex(renderer, textureData->mainSRVIndexU);
- D3D12_FreeSRVIndex(renderer, textureData->mainSRVIndexV);
- }
- if (textureData->nv12) {
- D3D12_FreeSRVIndex(renderer, textureData->mainSRVIndexNV);
- }
- SDL_free(textureData->pixels);
- #endif
- SDL_free(textureData);
- texture->driverdata = NULL;
- }
- static int D3D12_UpdateTextureInternal(D3D12_RenderData *rendererData, ID3D12Resource *texture, int plane, int x, int y, int w, int h, const void *pixels, int pitch, D3D12_RESOURCE_STATES *resourceState)
- {
- const Uint8 *src;
- Uint8 *dst;
- UINT length;
- HRESULT result;
- D3D12_RESOURCE_DESC textureDesc;
- D3D12_RESOURCE_DESC uploadDesc;
- D3D12_HEAP_PROPERTIES heapProps;
- D3D12_PLACED_SUBRESOURCE_FOOTPRINT placedTextureDesc;
- D3D12_TEXTURE_COPY_LOCATION srcLocation;
- D3D12_TEXTURE_COPY_LOCATION dstLocation;
- BYTE *textureMemory;
- ID3D12Resource *uploadBuffer;
- UINT row, NumRows, RowPitch;
- UINT64 RowLength;
- /* Create an upload buffer, which will be used to write to the main texture. */
- SDL_zero(textureDesc);
- D3D_CALL_RET(texture, GetDesc, &textureDesc);
- textureDesc.Width = w;
- textureDesc.Height = h;
- if (textureDesc.Format == DXGI_FORMAT_NV12 ||
- textureDesc.Format == DXGI_FORMAT_P010 ||
- textureDesc.Format == DXGI_FORMAT_P016) {
- textureDesc.Width = (textureDesc.Width + 1) & ~1;
- textureDesc.Height = (textureDesc.Height + 1) & ~1;
- }
- SDL_zero(uploadDesc);
- uploadDesc.Dimension = D3D12_RESOURCE_DIMENSION_BUFFER;
- uploadDesc.Alignment = D3D12_DEFAULT_RESOURCE_PLACEMENT_ALIGNMENT;
- uploadDesc.Height = 1;
- uploadDesc.DepthOrArraySize = 1;
- uploadDesc.MipLevels = 1;
- uploadDesc.Format = DXGI_FORMAT_UNKNOWN;
- uploadDesc.SampleDesc.Count = 1;
- uploadDesc.SampleDesc.Quality = 0;
- uploadDesc.Layout = D3D12_TEXTURE_LAYOUT_ROW_MAJOR;
- uploadDesc.Flags = D3D12_RESOURCE_FLAG_NONE;
- /* Figure out how much we need to allocate for the upload buffer */
- D3D_CALL(rendererData->d3dDevice, GetCopyableFootprints,
- &textureDesc,
- plane,
- 1,
- 0,
- &placedTextureDesc,
- &NumRows,
- &RowLength,
- &uploadDesc.Width);
- RowPitch = placedTextureDesc.Footprint.RowPitch;
- SDL_zero(heapProps);
- heapProps.Type = D3D12_HEAP_TYPE_UPLOAD;
- heapProps.CreationNodeMask = 1;
- heapProps.VisibleNodeMask = 1;
- /* Create the upload buffer */
- result = D3D_CALL(rendererData->d3dDevice, CreateCommittedResource,
- &heapProps,
- D3D12_HEAP_FLAG_NONE,
- &uploadDesc,
- D3D12_RESOURCE_STATE_GENERIC_READ,
- NULL,
- D3D_GUID(SDL_IID_ID3D12Resource),
- (void **)&rendererData->uploadBuffers[rendererData->currentUploadBuffer]);
- if (FAILED(result)) {
- return WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateCommittedResource [create upload buffer]"), result);
- }
- /* Get a write-only pointer to data in the upload buffer: */
- uploadBuffer = rendererData->uploadBuffers[rendererData->currentUploadBuffer];
- result = D3D_CALL(uploadBuffer, Map,
- 0,
- NULL,
- (void **)&textureMemory);
- if (FAILED(result)) {
- SAFE_RELEASE(rendererData->uploadBuffers[rendererData->currentUploadBuffer]);
- return WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Resource::Map [map staging texture]"), result);
- }
- src = (const Uint8 *)pixels;
- dst = textureMemory;
- length = (UINT)RowLength;
- if (length == (UINT)pitch && length == RowPitch) {
- SDL_memcpy(dst, src, (size_t)length * NumRows);
- } else {
- if (length > (UINT)pitch) {
- length = pitch;
- }
- if (length > RowPitch) {
- length = RowPitch;
- }
- for (row = NumRows; row--; ) {
- SDL_memcpy(dst, src, length);
- src += pitch;
- dst += RowPitch;
- }
- }
- /* Commit the changes back to the upload buffer: */
- D3D_CALL(uploadBuffer, Unmap, 0, NULL);
- /* Make sure the destination is in the correct resource state */
- D3D12_TransitionResource(rendererData, texture, *resourceState, D3D12_RESOURCE_STATE_COPY_DEST);
- *resourceState = D3D12_RESOURCE_STATE_COPY_DEST;
- SDL_zero(dstLocation);
- dstLocation.pResource = texture;
- dstLocation.Type = D3D12_TEXTURE_COPY_TYPE_SUBRESOURCE_INDEX;
- dstLocation.SubresourceIndex = plane;
- SDL_zero(srcLocation);
- srcLocation.pResource = rendererData->uploadBuffers[rendererData->currentUploadBuffer];
- srcLocation.Type = D3D12_TEXTURE_COPY_TYPE_PLACED_FOOTPRINT;
- srcLocation.PlacedFootprint = placedTextureDesc;
- D3D_CALL(rendererData->commandList, CopyTextureRegion,
- &dstLocation,
- x,
- y,
- 0,
- &srcLocation,
- NULL);
- /* Transition the texture to be shader accessible */
- D3D12_TransitionResource(rendererData, texture, *resourceState, D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE);
- *resourceState = D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE;
- rendererData->currentUploadBuffer++;
- /* If we've used up all the upload buffers, we need to issue the batch */
- if (rendererData->currentUploadBuffer == SDL_D3D12_NUM_UPLOAD_BUFFERS) {
- D3D12_IssueBatch(rendererData);
- }
- return 0;
- }
- static int D3D12_UpdateTexture(SDL_Renderer *renderer, SDL_Texture *texture,
- const SDL_Rect *rect, const void *srcPixels,
- int srcPitch)
- {
- D3D12_RenderData *rendererData = (D3D12_RenderData *)renderer->driverdata;
- D3D12_TextureData *textureData = (D3D12_TextureData *)texture->driverdata;
- if (!textureData) {
- return SDL_SetError("Texture is not currently available");
- }
- if (D3D12_UpdateTextureInternal(rendererData, textureData->mainTexture, 0, rect->x, rect->y, rect->w, rect->h, srcPixels, srcPitch, &textureData->mainResourceState) < 0) {
- return -1;
- }
- #if SDL_HAVE_YUV
- if (textureData->yuv) {
- /* Skip to the correct offset into the next texture */
- srcPixels = (const void *)((const Uint8 *)srcPixels + rect->h * srcPitch);
- if (D3D12_UpdateTextureInternal(rendererData, texture->format == SDL_PIXELFORMAT_YV12 ? textureData->mainTextureV : textureData->mainTextureU, 0, rect->x / 2, rect->y / 2, (rect->w + 1) / 2, (rect->h + 1) / 2, srcPixels, (srcPitch + 1) / 2, texture->format == SDL_PIXELFORMAT_YV12 ? &textureData->mainResourceStateV : &textureData->mainResourceStateU) < 0) {
- return -1;
- }
- /* Skip to the correct offset into the next texture */
- srcPixels = (const void *)((const Uint8 *)srcPixels + ((rect->h + 1) / 2) * ((srcPitch + 1) / 2));
- if (D3D12_UpdateTextureInternal(rendererData, texture->format == SDL_PIXELFORMAT_YV12 ? textureData->mainTextureU : textureData->mainTextureV, 0, rect->x / 2, rect->y / 2, (rect->w + 1) / 2, (rect->h + 1) / 2, srcPixels, (srcPitch + 1) / 2, texture->format == SDL_PIXELFORMAT_YV12 ? &textureData->mainResourceStateU : &textureData->mainResourceStateV) < 0) {
- return -1;
- }
- }
- if (textureData->nv12) {
- /* Skip to the correct offset into the next texture */
- srcPixels = (const void *)((const Uint8 *)srcPixels + rect->h * srcPitch);
- if (D3D12_UpdateTextureInternal(rendererData, textureData->mainTexture, 1, rect->x, rect->y, (rect->w + 1) & ~1, (rect->h + 1) & ~1, srcPixels, (srcPitch + 1) & ~1, &textureData->mainResourceState) < 0) {
- return -1;
- }
- }
- #endif /* SDL_HAVE_YUV */
- return 0;
- }
- #if SDL_HAVE_YUV
- static int D3D12_UpdateTextureYUV(SDL_Renderer *renderer, SDL_Texture *texture,
- const SDL_Rect *rect,
- const Uint8 *Yplane, int Ypitch,
- const Uint8 *Uplane, int Upitch,
- const Uint8 *Vplane, int Vpitch)
- {
- D3D12_RenderData *rendererData = (D3D12_RenderData *)renderer->driverdata;
- D3D12_TextureData *textureData = (D3D12_TextureData *)texture->driverdata;
- if (!textureData) {
- return SDL_SetError("Texture is not currently available");
- }
- if (D3D12_UpdateTextureInternal(rendererData, textureData->mainTexture, 0, rect->x, rect->y, rect->w, rect->h, Yplane, Ypitch, &textureData->mainResourceState) < 0) {
- return -1;
- }
- if (D3D12_UpdateTextureInternal(rendererData, textureData->mainTextureU, 0, rect->x / 2, rect->y / 2, rect->w / 2, rect->h / 2, Uplane, Upitch, &textureData->mainResourceStateU) < 0) {
- return -1;
- }
- if (D3D12_UpdateTextureInternal(rendererData, textureData->mainTextureV, 0, rect->x / 2, rect->y / 2, rect->w / 2, rect->h / 2, Vplane, Vpitch, &textureData->mainResourceStateV) < 0) {
- return -1;
- }
- return 0;
- }
- static int D3D12_UpdateTextureNV(SDL_Renderer *renderer, SDL_Texture *texture,
- const SDL_Rect *rect,
- const Uint8 *Yplane, int Ypitch,
- const Uint8 *UVplane, int UVpitch)
- {
- D3D12_RenderData *rendererData = (D3D12_RenderData *)renderer->driverdata;
- D3D12_TextureData *textureData = (D3D12_TextureData *)texture->driverdata;
- if (!textureData) {
- return SDL_SetError("Texture is not currently available");
- }
- if (D3D12_UpdateTextureInternal(rendererData, textureData->mainTexture, 0, rect->x, rect->y, rect->w, rect->h, Yplane, Ypitch, &textureData->mainResourceState) < 0) {
- return -1;
- }
- if (D3D12_UpdateTextureInternal(rendererData, textureData->mainTexture, 1, rect->x, rect->y, rect->w, rect->h, UVplane, UVpitch, &textureData->mainResourceState) < 0) {
- return -1;
- }
- return 0;
- }
- #endif
- static int D3D12_LockTexture(SDL_Renderer *renderer, SDL_Texture *texture,
- const SDL_Rect *rect, void **pixels, int *pitch)
- {
- D3D12_RenderData *rendererData = (D3D12_RenderData *)renderer->driverdata;
- D3D12_TextureData *textureData = (D3D12_TextureData *)texture->driverdata;
- HRESULT result = S_OK;
- D3D12_RESOURCE_DESC textureDesc;
- D3D12_RESOURCE_DESC uploadDesc;
- D3D12_HEAP_PROPERTIES heapProps;
- D3D12_SUBRESOURCE_FOOTPRINT pitchedDesc;
- BYTE *textureMemory;
- int bpp;
- if (!textureData) {
- return SDL_SetError("Texture is not currently available");
- }
- #if SDL_HAVE_YUV
- if (textureData->yuv || textureData->nv12) {
- /* It's more efficient to upload directly... */
- if (!textureData->pixels) {
- textureData->pitch = texture->w;
- textureData->pixels = (Uint8 *)SDL_malloc((texture->h * textureData->pitch * 3) / 2);
- if (!textureData->pixels) {
- return -1;
- }
- }
- textureData->lockedRect = *rect;
- *pixels =
- (void *)(textureData->pixels + rect->y * textureData->pitch +
- rect->x * SDL_BYTESPERPIXEL(texture->format));
- *pitch = textureData->pitch;
- return 0;
- }
- #endif
- if (textureData->stagingBuffer) {
- return SDL_SetError("texture is already locked");
- }
- /* Create an upload buffer, which will be used to write to the main texture. */
- SDL_zero(textureDesc);
- D3D_CALL_RET(textureData->mainTexture, GetDesc, &textureDesc);
- textureDesc.Width = rect->w;
- textureDesc.Height = rect->h;
- SDL_zero(uploadDesc);
- uploadDesc.Dimension = D3D12_RESOURCE_DIMENSION_BUFFER;
- uploadDesc.Alignment = D3D12_DEFAULT_RESOURCE_PLACEMENT_ALIGNMENT;
- uploadDesc.Height = 1;
- uploadDesc.DepthOrArraySize = 1;
- uploadDesc.MipLevels = 1;
- uploadDesc.Format = DXGI_FORMAT_UNKNOWN;
- uploadDesc.SampleDesc.Count = 1;
- uploadDesc.SampleDesc.Quality = 0;
- uploadDesc.Layout = D3D12_TEXTURE_LAYOUT_ROW_MAJOR;
- uploadDesc.Flags = D3D12_RESOURCE_FLAG_NONE;
- /* Figure out how much we need to allocate for the upload buffer */
- D3D_CALL(rendererData->d3dDevice, GetCopyableFootprints,
- &textureDesc,
- 0,
- 1,
- 0,
- NULL,
- NULL,
- NULL,
- &uploadDesc.Width);
- SDL_zero(heapProps);
- heapProps.Type = D3D12_HEAP_TYPE_UPLOAD;
- heapProps.CreationNodeMask = 1;
- heapProps.VisibleNodeMask = 1;
- /* Create the upload buffer */
- result = D3D_CALL(rendererData->d3dDevice, CreateCommittedResource,
- &heapProps,
- D3D12_HEAP_FLAG_NONE,
- &uploadDesc,
- D3D12_RESOURCE_STATE_GENERIC_READ,
- NULL,
- D3D_GUID(SDL_IID_ID3D12Resource),
- (void **)&textureData->stagingBuffer);
- if (FAILED(result)) {
- return WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateCommittedResource [create upload buffer]"), result);
- }
- /* Get a write-only pointer to data in the upload buffer: */
- result = D3D_CALL(textureData->stagingBuffer, Map,
- 0,
- NULL,
- (void **)&textureMemory);
- if (FAILED(result)) {
- SAFE_RELEASE(rendererData->uploadBuffers[rendererData->currentUploadBuffer]);
- return WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Resource::Map [map staging texture]"), result);
- }
- SDL_zero(pitchedDesc);
- pitchedDesc.Format = textureDesc.Format;
- pitchedDesc.Width = rect->w;
- pitchedDesc.Height = rect->h;
- pitchedDesc.Depth = 1;
- if (pitchedDesc.Format == DXGI_FORMAT_R8_UNORM) {
- bpp = 1;
- } else {
- bpp = 4;
- }
- pitchedDesc.RowPitch = D3D12_Align(rect->w * bpp, D3D12_TEXTURE_DATA_PITCH_ALIGNMENT);
- /* Make note of where the staging texture will be written to
- * (on a call to SDL_UnlockTexture):
- */
- textureData->lockedRect = *rect;
- /* Make sure the caller has information on the texture's pixel buffer,
- * then return:
- */
- *pixels = textureMemory;
- *pitch = pitchedDesc.RowPitch;
- return 0;
- }
- static void D3D12_UnlockTexture(SDL_Renderer *renderer, SDL_Texture *texture)
- {
- D3D12_RenderData *rendererData = (D3D12_RenderData *)renderer->driverdata;
- D3D12_TextureData *textureData = (D3D12_TextureData *)texture->driverdata;
- D3D12_RESOURCE_DESC textureDesc;
- D3D12_SUBRESOURCE_FOOTPRINT pitchedDesc;
- D3D12_PLACED_SUBRESOURCE_FOOTPRINT placedTextureDesc;
- D3D12_TEXTURE_COPY_LOCATION srcLocation;
- D3D12_TEXTURE_COPY_LOCATION dstLocation;
- int bpp;
- if (!textureData) {
- return;
- }
- #if SDL_HAVE_YUV
- if (textureData->yuv || textureData->nv12) {
- const SDL_Rect *rect = &textureData->lockedRect;
- void *pixels =
- (void *)(textureData->pixels + rect->y * textureData->pitch +
- rect->x * SDL_BYTESPERPIXEL(texture->format));
- D3D12_UpdateTexture(renderer, texture, rect, pixels, textureData->pitch);
- return;
- }
- #endif
- /* Commit the pixel buffer's changes back to the staging texture: */
- D3D_CALL(textureData->stagingBuffer, Unmap, 0, NULL);
- SDL_zero(textureDesc);
- D3D_CALL_RET(textureData->mainTexture, GetDesc, &textureDesc);
- textureDesc.Width = textureData->lockedRect.w;
- textureDesc.Height = textureData->lockedRect.h;
- SDL_zero(pitchedDesc);
- pitchedDesc.Format = textureDesc.Format;
- pitchedDesc.Width = (UINT)textureDesc.Width;
- pitchedDesc.Height = textureDesc.Height;
- pitchedDesc.Depth = 1;
- if (pitchedDesc.Format == DXGI_FORMAT_R8_UNORM) {
- bpp = 1;
- } else {
- bpp = 4;
- }
- pitchedDesc.RowPitch = D3D12_Align(textureData->lockedRect.w * bpp, D3D12_TEXTURE_DATA_PITCH_ALIGNMENT);
- SDL_zero(placedTextureDesc);
- placedTextureDesc.Offset = 0;
- placedTextureDesc.Footprint = pitchedDesc;
- D3D12_TransitionResource(rendererData, textureData->mainTexture, textureData->mainResourceState, D3D12_RESOURCE_STATE_COPY_DEST);
- textureData->mainResourceState = D3D12_RESOURCE_STATE_COPY_DEST;
- SDL_zero(dstLocation);
- dstLocation.pResource = textureData->mainTexture;
- dstLocation.Type = D3D12_TEXTURE_COPY_TYPE_SUBRESOURCE_INDEX;
- dstLocation.SubresourceIndex = 0;
- SDL_zero(srcLocation);
- srcLocation.pResource = textureData->stagingBuffer;
- srcLocation.Type = D3D12_TEXTURE_COPY_TYPE_PLACED_FOOTPRINT;
- srcLocation.PlacedFootprint = placedTextureDesc;
- D3D_CALL(rendererData->commandList, CopyTextureRegion,
- &dstLocation,
- textureData->lockedRect.x,
- textureData->lockedRect.y,
- 0,
- &srcLocation,
- NULL);
- /* Transition the texture to be shader accessible */
- D3D12_TransitionResource(rendererData, textureData->mainTexture, textureData->mainResourceState, D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE);
- textureData->mainResourceState = D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE;
- /* Execute the command list before releasing the staging buffer */
- D3D12_IssueBatch(rendererData);
- SAFE_RELEASE(textureData->stagingBuffer);
- }
- static void D3D12_SetTextureScaleMode(SDL_Renderer *renderer, SDL_Texture *texture, SDL_ScaleMode scaleMode)
- {
- D3D12_TextureData *textureData = (D3D12_TextureData *)texture->driverdata;
- if (!textureData) {
- return;
- }
- textureData->scaleMode = (scaleMode == SDL_SCALEMODE_NEAREST) ? D3D12_FILTER_MIN_MAG_MIP_POINT : D3D12_FILTER_MIN_MAG_MIP_LINEAR;
- }
- static int D3D12_SetRenderTarget(SDL_Renderer *renderer, SDL_Texture *texture)
- {
- D3D12_RenderData *rendererData = (D3D12_RenderData *)renderer->driverdata;
- D3D12_TextureData *textureData = NULL;
- if (!texture) {
- if (rendererData->textureRenderTarget) {
- D3D12_TransitionResource(rendererData,
- rendererData->textureRenderTarget->mainTexture,
- rendererData->textureRenderTarget->mainResourceState,
- D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE);
- rendererData->textureRenderTarget->mainResourceState = D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE;
- }
- rendererData->textureRenderTarget = NULL;
- return 0;
- }
- textureData = (D3D12_TextureData *)texture->driverdata;
- if (!textureData->mainTextureRenderTargetView.ptr) {
- return SDL_SetError("specified texture is not a render target");
- }
- rendererData->textureRenderTarget = textureData;
- D3D12_TransitionResource(rendererData,
- rendererData->textureRenderTarget->mainTexture,
- rendererData->textureRenderTarget->mainResourceState,
- D3D12_RESOURCE_STATE_RENDER_TARGET);
- rendererData->textureRenderTarget->mainResourceState = D3D12_RESOURCE_STATE_RENDER_TARGET;
- return 0;
- }
- static int D3D12_QueueNoOp(SDL_Renderer *renderer, SDL_RenderCommand *cmd)
- {
- return 0; /* nothing to do in this backend. */
- }
- static int D3D12_QueueDrawPoints(SDL_Renderer *renderer, SDL_RenderCommand *cmd, const SDL_FPoint *points, int count)
- {
- VertexPositionColor *verts = (VertexPositionColor *)SDL_AllocateRenderVertices(renderer, count * sizeof(VertexPositionColor), 0, &cmd->data.draw.first);
- int i;
- SDL_FColor color = cmd->data.draw.color;
- SDL_bool convert_color = SDL_RenderingLinearSpace(renderer);
- if (!verts) {
- return -1;
- }
- cmd->data.draw.count = count;
- if (convert_color) {
- SDL_ConvertToLinear(&color);
- }
- for (i = 0; i < count; i++) {
- verts->pos.x = points[i].x + 0.5f;
- verts->pos.y = points[i].y + 0.5f;
- verts->tex.x = 0.0f;
- verts->tex.y = 0.0f;
- verts->color = color;
- verts++;
- }
- return 0;
- }
- static int D3D12_QueueGeometry(SDL_Renderer *renderer, SDL_RenderCommand *cmd, SDL_Texture *texture,
- const float *xy, int xy_stride, const SDL_FColor *color, int color_stride, const float *uv, int uv_stride,
- int num_vertices, const void *indices, int num_indices, int size_indices,
- float scale_x, float scale_y)
- {
- int i;
- int count = indices ? num_indices : num_vertices;
- VertexPositionColor *verts = (VertexPositionColor *)SDL_AllocateRenderVertices(renderer, count * sizeof(VertexPositionColor), 0, &cmd->data.draw.first);
- SDL_bool convert_color = SDL_RenderingLinearSpace(renderer);
- D3D12_TextureData *textureData = texture ? (D3D12_TextureData *)texture->driverdata : NULL;
- float u_scale = textureData ? (float)texture->w / textureData->w : 0.0f;
- float v_scale = textureData ? (float)texture->h / textureData->h : 0.0f;
- if (!verts) {
- return -1;
- }
- cmd->data.draw.count = count;
- size_indices = indices ? size_indices : 0;
- for (i = 0; i < count; i++) {
- int j;
- float *xy_;
- if (size_indices == 4) {
- j = ((const Uint32 *)indices)[i];
- } else if (size_indices == 2) {
- j = ((const Uint16 *)indices)[i];
- } else if (size_indices == 1) {
- j = ((const Uint8 *)indices)[i];
- } else {
- j = i;
- }
- xy_ = (float *)((char *)xy + j * xy_stride);
- verts->pos.x = xy_[0] * scale_x;
- verts->pos.y = xy_[1] * scale_y;
- verts->color = *(SDL_FColor *)((char *)color + j * color_stride);
- if (convert_color) {
- SDL_ConvertToLinear(&verts->color);
- }
- if (texture) {
- float *uv_ = (float *)((char *)uv + j * uv_stride);
- verts->tex.x = uv_[0] * u_scale;
- verts->tex.y = uv_[1] * v_scale;
- } else {
- verts->tex.x = 0.0f;
- verts->tex.y = 0.0f;
- }
- verts += 1;
- }
- return 0;
- }
- static int D3D12_UpdateVertexBuffer(SDL_Renderer *renderer,
- const void *vertexData, size_t dataSizeInBytes)
- {
- D3D12_RenderData *rendererData = (D3D12_RenderData *)renderer->driverdata;
- HRESULT result = S_OK;
- const int vbidx = rendererData->currentVertexBuffer;
- UINT8 *vertexBufferData = NULL;
- D3D12_RANGE range;
- ID3D12Resource *vertexBuffer;
- range.Begin = 0;
- range.End = 0;
- if (dataSizeInBytes == 0) {
- return 0; /* nothing to do. */
- }
- if (rendererData->issueBatch) {
- if (FAILED(D3D12_IssueBatch(rendererData))) {
- SDL_SetError("Failed to issue intermediate batch");
- return E_FAIL;
- }
- }
- /* If the existing vertex buffer isn't big enough, we need to recreate a big enough one */
- if (dataSizeInBytes > rendererData->vertexBuffers[vbidx].size) {
- D3D12_CreateVertexBuffer(rendererData, vbidx, dataSizeInBytes);
- }
- vertexBuffer = rendererData->vertexBuffers[vbidx].resource;
- result = D3D_CALL(vertexBuffer, Map, 0, &range, (void **)&vertexBufferData);
- if (FAILED(result)) {
- return WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Resource::Map [vertex buffer]"), result);
- }
- SDL_memcpy(vertexBufferData, vertexData, dataSizeInBytes);
- D3D_CALL(vertexBuffer, Unmap, 0, NULL);
- rendererData->vertexBuffers[vbidx].view.SizeInBytes = (UINT)dataSizeInBytes;
- D3D_CALL(rendererData->commandList, IASetVertexBuffers, 0, 1, &rendererData->vertexBuffers[vbidx].view);
- rendererData->currentVertexBuffer++;
- if (rendererData->currentVertexBuffer >= SDL_D3D12_NUM_VERTEX_BUFFERS) {
- rendererData->currentVertexBuffer = 0;
- rendererData->issueBatch = SDL_TRUE;
- }
- return S_OK;
- }
- static int D3D12_UpdateViewport(SDL_Renderer *renderer)
- {
- D3D12_RenderData *data = (D3D12_RenderData *)renderer->driverdata;
- const SDL_Rect *viewport = &data->currentViewport;
- Float4X4 projection;
- Float4X4 view;
- SDL_FRect orientationAlignedViewport;
- BOOL swapDimensions;
- D3D12_VIEWPORT d3dviewport;
- const int rotation = D3D12_GetRotationForCurrentRenderTarget(renderer);
- if (viewport->w == 0 || viewport->h == 0) {
- /* If the viewport is empty, assume that it is because
- * SDL_CreateRenderer is calling it, and will call it again later
- * with a non-empty viewport.
- */
- /* SDL_Log("%s, no viewport was set!\n", __FUNCTION__); */
- return -1;
- }
- /* Make sure the SDL viewport gets rotated to that of the physical display's rotation.
- * Keep in mind here that the Y-axis will be been inverted (from Direct3D's
- * default coordinate system) so rotations will be done in the opposite
- * direction of the DXGI_MODE_ROTATION enumeration.
- */
- switch (rotation) {
- case DXGI_MODE_ROTATION_IDENTITY:
- projection = MatrixIdentity();
- break;
- case DXGI_MODE_ROTATION_ROTATE270:
- projection = MatrixRotationZ(SDL_PI_F * 0.5f);
- break;
- case DXGI_MODE_ROTATION_ROTATE180:
- projection = MatrixRotationZ(SDL_PI_F);
- break;
- case DXGI_MODE_ROTATION_ROTATE90:
- projection = MatrixRotationZ(-SDL_PI_F * 0.5f);
- break;
- default:
- return SDL_SetError("An unknown DisplayOrientation is being used");
- }
- /* Update the view matrix */
- SDL_zero(view);
- view.m[0][0] = 2.0f / viewport->w;
- view.m[1][1] = -2.0f / viewport->h;
- view.m[2][2] = 1.0f;
- view.m[3][0] = -1.0f;
- view.m[3][1] = 1.0f;
- view.m[3][3] = 1.0f;
- /* Combine the projection + view matrix together now, as both only get
- * set here (as of this writing, on Dec 26, 2013). When done, store it
- * for eventual transfer to the GPU.
- */
- data->vertexShaderConstantsData.projectionAndView = MatrixMultiply(
- view,
- projection);
- /* Update the Direct3D viewport, which seems to be aligned to the
- * swap buffer's coordinate space, which is always in either
- * a landscape mode, for all Windows 8/RT devices, or a portrait mode,
- * for Windows Phone devices.
- */
- swapDimensions = D3D12_IsDisplayRotated90Degrees((DXGI_MODE_ROTATION)rotation);
- if (swapDimensions) {
- orientationAlignedViewport.x = (float)viewport->y;
- orientationAlignedViewport.y = (float)viewport->x;
- orientationAlignedViewport.w = (float)viewport->h;
- orientationAlignedViewport.h = (float)viewport->w;
- } else {
- orientationAlignedViewport.x = (float)viewport->x;
- orientationAlignedViewport.y = (float)viewport->y;
- orientationAlignedViewport.w = (float)viewport->w;
- orientationAlignedViewport.h = (float)viewport->h;
- }
- d3dviewport.TopLeftX = orientationAlignedViewport.x;
- d3dviewport.TopLeftY = orientationAlignedViewport.y;
- d3dviewport.Width = orientationAlignedViewport.w;
- d3dviewport.Height = orientationAlignedViewport.h;
- d3dviewport.MinDepth = 0.0f;
- d3dviewport.MaxDepth = 1.0f;
- /* SDL_Log("%s: D3D viewport = {%f,%f,%f,%f}\n", __FUNCTION__, d3dviewport.TopLeftX, d3dviewport.TopLeftY, d3dviewport.Width, d3dviewport.Height); */
- D3D_CALL(data->commandList, RSSetViewports, 1, &d3dviewport);
- data->viewportDirty = SDL_FALSE;
- return 0;
- }
- static int D3D12_SetDrawState(SDL_Renderer *renderer, const SDL_RenderCommand *cmd, D3D12_Shader shader, const float *shader_params,
- D3D12_PRIMITIVE_TOPOLOGY_TYPE topology,
- const int numShaderResources, D3D12_CPU_DESCRIPTOR_HANDLE *shaderResources,
- D3D12_CPU_DESCRIPTOR_HANDLE *sampler, const Float4X4 *matrix)
- {
- D3D12_RenderData *rendererData = (D3D12_RenderData *)renderer->driverdata;
- const Float4X4 *newmatrix = matrix ? matrix : &rendererData->identity;
- D3D12_CPU_DESCRIPTOR_HANDLE renderTargetView = D3D12_GetCurrentRenderTargetView(renderer);
- const SDL_BlendMode blendMode = cmd->data.draw.blend;
- SDL_bool updateSubresource = SDL_FALSE;
- int i;
- D3D12_CPU_DESCRIPTOR_HANDLE firstShaderResource;
- DXGI_FORMAT rtvFormat = rendererData->renderTargetFormat;
- SDL_bool scRGB_output = SDL_RenderingLinearSpace(renderer);
- float color_scale = cmd->data.draw.color_scale;
- if (rendererData->textureRenderTarget) {
- rtvFormat = rendererData->textureRenderTarget->mainTextureFormat;
- }
- /* See if we need to change the pipeline state */
- if (!rendererData->currentPipelineState ||
- rendererData->currentPipelineState->shader != shader ||
- rendererData->currentPipelineState->blendMode != blendMode ||
- rendererData->currentPipelineState->topology != topology ||
- rendererData->currentPipelineState->rtvFormat != rtvFormat) {
- /* Find the matching pipeline.
- NOTE: Although it may seem inefficient to linearly search through ~450 pipelines
- to find the correct one, in profiling this doesn't come up at all.
- It's unlikely that using a hash table would affect performance a measurable amount unless
- it's a degenerate case that's changing the pipeline state dozens of times per frame.
- */
- rendererData->currentPipelineState = NULL;
- for (i = 0; i < rendererData->pipelineStateCount; ++i) {
- D3D12_PipelineState *candidatePiplineState = &rendererData->pipelineStates[i];
- if (candidatePiplineState->shader == shader &&
- candidatePiplineState->blendMode == blendMode &&
- candidatePiplineState->topology == topology &&
- candidatePiplineState->rtvFormat == rtvFormat) {
- rendererData->currentPipelineState = candidatePiplineState;
- break;
- }
- }
- /* If we didn't find a match, create a new one -- it must mean the blend mode is non-standard */
- if (!rendererData->currentPipelineState) {
- rendererData->currentPipelineState = D3D12_CreatePipelineState(renderer, shader, blendMode, topology, rtvFormat);
- }
- if (!rendererData->currentPipelineState) {
- /* The error has been set inside D3D12_CreatePipelineState() */
- return -1;
- }
- D3D_CALL(rendererData->commandList, SetPipelineState, rendererData->currentPipelineState->pipelineState);
- D3D_CALL(rendererData->commandList, SetGraphicsRootSignature,
- rendererData->rootSignatures[D3D12_GetRootSignatureType(rendererData->currentPipelineState->shader)]);
- /* When we change these we will need to re-upload the constant buffer and reset any descriptors */
- updateSubresource = SDL_TRUE;
- rendererData->currentSampler.ptr = 0;
- rendererData->currentShaderResource.ptr = 0;
- }
- if (renderTargetView.ptr != rendererData->currentRenderTargetView.ptr) {
- D3D_CALL(rendererData->commandList, OMSetRenderTargets, 1, &renderTargetView, FALSE, NULL);
- rendererData->currentRenderTargetView = renderTargetView;
- }
- if (rendererData->viewportDirty) {
- if (D3D12_UpdateViewport(renderer) == 0) {
- /* vertexShaderConstantsData.projectionAndView has changed */
- updateSubresource = SDL_TRUE;
- }
- }
- if (rendererData->cliprectDirty) {
- D3D12_RECT scissorRect;
- if (D3D12_GetViewportAlignedD3DRect(renderer, &rendererData->currentCliprect, &scissorRect, TRUE) != 0) {
- /* D3D12_GetViewportAlignedD3DRect will have set the SDL error */
- return -1;
- }
- D3D_CALL(rendererData->commandList, RSSetScissorRects, 1, &scissorRect);
- rendererData->cliprectDirty = SDL_FALSE;
- }
- if (numShaderResources > 0) {
- firstShaderResource = shaderResources[0];
- } else {
- firstShaderResource.ptr = 0;
- }
- if (firstShaderResource.ptr != rendererData->currentShaderResource.ptr) {
- for (i = 0; i < numShaderResources; ++i) {
- D3D12_GPU_DESCRIPTOR_HANDLE GPUHandle = D3D12_CPUtoGPUHandle(rendererData->srvDescriptorHeap, shaderResources[i]);
- D3D_CALL(rendererData->commandList, SetGraphicsRootDescriptorTable, i + 2, GPUHandle);
- }
- rendererData->currentShaderResource.ptr = firstShaderResource.ptr;
- }
- if (sampler && sampler->ptr != rendererData->currentSampler.ptr) {
- D3D12_GPU_DESCRIPTOR_HANDLE GPUHandle = D3D12_CPUtoGPUHandle(rendererData->samplerDescriptorHeap, *sampler);
- UINT tableIndex = 0;
- /* Figure out the correct sampler descriptor table index based on the type of shader */
- switch (shader) {
- case SHADER_RGB:
- tableIndex = 3;
- break;
- #if SDL_HAVE_YUV
- case SHADER_YUV:
- tableIndex = 5;
- break;
- case SHADER_NV12:
- case SHADER_NV21:
- case SHADER_HDR10:
- tableIndex = 4;
- break;
- #endif
- default:
- return SDL_SetError("[direct3d12] Trying to set a sampler for a shader which doesn't have one");
- break;
- }
- D3D_CALL(rendererData->commandList, SetGraphicsRootDescriptorTable, tableIndex, GPUHandle);
- rendererData->currentSampler = *sampler;
- }
- if (updateSubresource == SDL_TRUE || SDL_memcmp(&rendererData->vertexShaderConstantsData.model, newmatrix, sizeof(*newmatrix)) != 0) {
- SDL_memcpy(&rendererData->vertexShaderConstantsData.model, newmatrix, sizeof(*newmatrix));
- D3D_CALL(rendererData->commandList, SetGraphicsRoot32BitConstants,
- 0,
- 32,
- &rendererData->vertexShaderConstantsData,
- 0);
- }
- if (updateSubresource == SDL_TRUE ||
- scRGB_output != rendererData->currentPipelineState->scRGB_output ||
- color_scale != rendererData->currentPipelineState->color_scale ||
- (shader_params && shader_params != rendererData->currentPipelineState->shader_params)) {
- PixelShaderConstants constants;
- constants.scRGB_output = (float)scRGB_output;
- constants.color_scale = color_scale;
- if (shader_params) {
- SDL_memcpy(constants.YCbCr_matrix, shader_params, sizeof(constants.YCbCr_matrix));
- }
- D3D_CALL(rendererData->commandList, SetGraphicsRoot32BitConstants,
- 1,
- 20,
- &constants,
- 0);
- rendererData->currentPipelineState->scRGB_output = scRGB_output;
- rendererData->currentPipelineState->color_scale = color_scale;
- rendererData->currentPipelineState->shader_params = shader_params;
- }
- return 0;
- }
- static int D3D12_SetCopyState(SDL_Renderer *renderer, const SDL_RenderCommand *cmd, const Float4X4 *matrix)
- {
- SDL_Texture *texture = cmd->data.draw.texture;
- D3D12_RenderData *rendererData = (D3D12_RenderData *)renderer->driverdata;
- D3D12_TextureData *textureData = (D3D12_TextureData *)texture->driverdata;
- D3D12_CPU_DESCRIPTOR_HANDLE *textureSampler;
- switch (textureData->scaleMode) {
- case D3D12_FILTER_MIN_MAG_MIP_POINT:
- textureSampler = &rendererData->nearestPixelSampler;
- break;
- case D3D12_FILTER_MIN_MAG_MIP_LINEAR:
- textureSampler = &rendererData->linearSampler;
- break;
- default:
- return SDL_SetError("Unknown scale mode: %d\n", textureData->scaleMode);
- }
- #if SDL_HAVE_YUV
- if (textureData->yuv) {
- D3D12_CPU_DESCRIPTOR_HANDLE shaderResources[3];
- shaderResources[0] = textureData->mainTextureResourceView;
- shaderResources[1] = textureData->mainTextureResourceViewU;
- shaderResources[2] = textureData->mainTextureResourceViewV;
- /* Make sure each texture is in the correct state to be accessed by the pixel shader. */
- D3D12_TransitionResource(rendererData, textureData->mainTexture, textureData->mainResourceState, D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE);
- textureData->mainResourceState = D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE;
- D3D12_TransitionResource(rendererData, textureData->mainTextureU, textureData->mainResourceStateU, D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE);
- textureData->mainResourceStateU = D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE;
- D3D12_TransitionResource(rendererData, textureData->mainTextureV, textureData->mainResourceStateV, D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE);
- textureData->mainResourceStateV = D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE;
- return D3D12_SetDrawState(renderer, cmd, textureData->shader, textureData->shader_params, D3D12_PRIMITIVE_TOPOLOGY_TYPE_TRIANGLE, SDL_arraysize(shaderResources), shaderResources, textureSampler, matrix);
- } else if (textureData->nv12) {
- D3D12_CPU_DESCRIPTOR_HANDLE shaderResources[2];
- shaderResources[0] = textureData->mainTextureResourceView;
- shaderResources[1] = textureData->mainTextureResourceViewNV;
- /* Make sure each texture is in the correct state to be accessed by the pixel shader. */
- D3D12_TransitionResource(rendererData, textureData->mainTexture, textureData->mainResourceState, D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE);
- textureData->mainResourceState = D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE;
- return D3D12_SetDrawState(renderer, cmd, textureData->shader, textureData->shader_params, D3D12_PRIMITIVE_TOPOLOGY_TYPE_TRIANGLE, SDL_arraysize(shaderResources), shaderResources, textureSampler, matrix);
- }
- #endif /* SDL_HAVE_YUV */
- D3D12_TransitionResource(rendererData, textureData->mainTexture, textureData->mainResourceState, D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE);
- textureData->mainResourceState = D3D12_RESOURCE_STATE_PIXEL_SHADER_RESOURCE;
- return D3D12_SetDrawState(renderer, cmd, textureData->shader, textureData->shader_params, D3D12_PRIMITIVE_TOPOLOGY_TYPE_TRIANGLE, 1, &textureData->mainTextureResourceView, textureSampler, matrix);
- }
- static void D3D12_DrawPrimitives(SDL_Renderer *renderer, D3D12_PRIMITIVE_TOPOLOGY primitiveTopology, const size_t vertexStart, const size_t vertexCount)
- {
- D3D12_RenderData *rendererData = (D3D12_RenderData *)renderer->driverdata;
- D3D_CALL(rendererData->commandList, IASetPrimitiveTopology, primitiveTopology);
- D3D_CALL(rendererData->commandList, DrawInstanced, (UINT)vertexCount, 1, (UINT)vertexStart, 0);
- }
- static void D3D12_InvalidateCachedState(SDL_Renderer *renderer)
- {
- D3D12_RenderData *data = (D3D12_RenderData *)renderer->driverdata;
- data->currentRenderTargetView.ptr = 0;
- data->currentShaderResource.ptr = 0;
- data->currentSampler.ptr = 0;
- data->cliprectDirty = SDL_TRUE;
- data->viewportDirty = SDL_TRUE;
- }
- static int D3D12_RunCommandQueue(SDL_Renderer *renderer, SDL_RenderCommand *cmd, void *vertices, size_t vertsize)
- {
- D3D12_RenderData *rendererData = (D3D12_RenderData *)renderer->driverdata;
- const int viewportRotation = D3D12_GetRotationForCurrentRenderTarget(renderer);
- if (rendererData->pixelSizeChanged) {
- D3D12_UpdateForWindowSizeChange(renderer);
- rendererData->pixelSizeChanged = SDL_FALSE;
- }
- if (rendererData->currentViewportRotation != viewportRotation) {
- rendererData->currentViewportRotation = viewportRotation;
- rendererData->viewportDirty = SDL_TRUE;
- }
- if (D3D12_UpdateVertexBuffer(renderer, vertices, vertsize) < 0) {
- return -1;
- }
- while (cmd) {
- switch (cmd->command) {
- case SDL_RENDERCMD_SETDRAWCOLOR:
- {
- break; /* this isn't currently used in this render backend. */
- }
- case SDL_RENDERCMD_SETCOLORSCALE:
- {
- break;
- }
- case SDL_RENDERCMD_SETVIEWPORT:
- {
- SDL_Rect *viewport = &rendererData->currentViewport;
- if (SDL_memcmp(viewport, &cmd->data.viewport.rect, sizeof(cmd->data.viewport.rect)) != 0) {
- SDL_copyp(viewport, &cmd->data.viewport.rect);
- rendererData->viewportDirty = SDL_TRUE;
- }
- break;
- }
- case SDL_RENDERCMD_SETCLIPRECT:
- {
- const SDL_Rect *rect = &cmd->data.cliprect.rect;
- SDL_Rect viewport_cliprect;
- if (rendererData->currentCliprectEnabled != cmd->data.cliprect.enabled) {
- rendererData->currentCliprectEnabled = cmd->data.cliprect.enabled;
- rendererData->cliprectDirty = SDL_TRUE;
- }
- if (!rendererData->currentCliprectEnabled) {
- /* If the clip rect is disabled, then the scissor rect should be the whole viewport,
- since direct3d12 doesn't allow disabling the scissor rectangle */
- viewport_cliprect.x = 0;
- viewport_cliprect.y = 0;
- viewport_cliprect.w = rendererData->currentViewport.w;
- viewport_cliprect.h = rendererData->currentViewport.h;
- rect = &viewport_cliprect;
- }
- if (SDL_memcmp(&rendererData->currentCliprect, rect, sizeof(*rect)) != 0) {
- SDL_copyp(&rendererData->currentCliprect, rect);
- rendererData->cliprectDirty = SDL_TRUE;
- }
- break;
- }
- case SDL_RENDERCMD_CLEAR:
- {
- D3D12_CPU_DESCRIPTOR_HANDLE rtvDescriptor = D3D12_GetCurrentRenderTargetView(renderer);
- SDL_bool convert_color = SDL_RenderingLinearSpace(renderer);
- SDL_FColor color = cmd->data.color.color;
- if (convert_color) {
- SDL_ConvertToLinear(&color);
- }
- color.r *= cmd->data.color.color_scale;
- color.g *= cmd->data.color.color_scale;
- color.b *= cmd->data.color.color_scale;
- D3D_CALL(rendererData->commandList, ClearRenderTargetView, rtvDescriptor, &color.r, 0, NULL);
- break;
- }
- case SDL_RENDERCMD_DRAW_POINTS:
- {
- const size_t count = cmd->data.draw.count;
- const size_t first = cmd->data.draw.first;
- const size_t start = first / sizeof(VertexPositionColor);
- D3D12_SetDrawState(renderer, cmd, SHADER_SOLID, NULL, D3D12_PRIMITIVE_TOPOLOGY_TYPE_POINT, 0, NULL, NULL, NULL);
- D3D12_DrawPrimitives(renderer, D3D_PRIMITIVE_TOPOLOGY_POINTLIST, start, count);
- break;
- }
- case SDL_RENDERCMD_DRAW_LINES:
- {
- const size_t count = cmd->data.draw.count;
- const size_t first = cmd->data.draw.first;
- const size_t start = first / sizeof(VertexPositionColor);
- const VertexPositionColor *verts = (VertexPositionColor *)(((Uint8 *)vertices) + first);
- D3D12_SetDrawState(renderer, cmd, SHADER_SOLID, NULL, D3D12_PRIMITIVE_TOPOLOGY_TYPE_LINE, 0, NULL, NULL, NULL);
- D3D12_DrawPrimitives(renderer, D3D_PRIMITIVE_TOPOLOGY_LINESTRIP, start, count);
- if (verts[0].pos.x != verts[count - 1].pos.x || verts[0].pos.y != verts[count - 1].pos.y) {
- D3D12_DrawPrimitives(renderer, D3D_PRIMITIVE_TOPOLOGY_POINTLIST, start + (count - 1), 1);
- }
- break;
- }
- case SDL_RENDERCMD_FILL_RECTS: /* unused */
- break;
- case SDL_RENDERCMD_COPY: /* unused */
- break;
- case SDL_RENDERCMD_COPY_EX: /* unused */
- break;
- case SDL_RENDERCMD_GEOMETRY:
- {
- SDL_Texture *texture = cmd->data.draw.texture;
- const size_t count = cmd->data.draw.count;
- const size_t first = cmd->data.draw.first;
- const size_t start = first / sizeof(VertexPositionColor);
- if (texture) {
- D3D12_SetCopyState(renderer, cmd, NULL);
- } else {
- D3D12_SetDrawState(renderer, cmd, SHADER_SOLID, NULL, D3D12_PRIMITIVE_TOPOLOGY_TYPE_TRIANGLE, 0, NULL, NULL, NULL);
- }
- D3D12_DrawPrimitives(renderer, D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST, start, count);
- break;
- }
- case SDL_RENDERCMD_NO_OP:
- break;
- }
- cmd = cmd->next;
- }
- return 0;
- }
- static SDL_Surface *D3D12_RenderReadPixels(SDL_Renderer *renderer, const SDL_Rect *rect)
- {
- D3D12_RenderData *data = (D3D12_RenderData *)renderer->driverdata;
- ID3D12Resource *backBuffer = NULL;
- ID3D12Resource *readbackBuffer = NULL;
- HRESULT result;
- D3D12_RESOURCE_DESC textureDesc;
- D3D12_RESOURCE_DESC readbackDesc;
- D3D12_HEAP_PROPERTIES heapProps;
- D3D12_RECT srcRect = { 0, 0, 0, 0 };
- D3D12_BOX srcBox;
- D3D12_TEXTURE_COPY_LOCATION dstLocation;
- D3D12_TEXTURE_COPY_LOCATION srcLocation;
- D3D12_PLACED_SUBRESOURCE_FOOTPRINT placedTextureDesc;
- D3D12_SUBRESOURCE_FOOTPRINT pitchedDesc;
- BYTE *textureMemory;
- int bpp;
- SDL_Surface *output = NULL;
- if (data->textureRenderTarget) {
- backBuffer = data->textureRenderTarget->mainTexture;
- } else {
- backBuffer = data->renderTargets[data->currentBackBufferIndex];
- }
- /* Create a staging texture to copy the screen's data to: */
- SDL_zero(textureDesc);
- D3D_CALL_RET(backBuffer, GetDesc, &textureDesc);
- textureDesc.Width = rect->w;
- textureDesc.Height = rect->h;
- SDL_zero(readbackDesc);
- readbackDesc.Dimension = D3D12_RESOURCE_DIMENSION_BUFFER;
- readbackDesc.Alignment = D3D12_DEFAULT_RESOURCE_PLACEMENT_ALIGNMENT;
- readbackDesc.Height = 1;
- readbackDesc.DepthOrArraySize = 1;
- readbackDesc.MipLevels = 1;
- readbackDesc.Format = DXGI_FORMAT_UNKNOWN;
- readbackDesc.SampleDesc.Count = 1;
- readbackDesc.SampleDesc.Quality = 0;
- readbackDesc.Layout = D3D12_TEXTURE_LAYOUT_ROW_MAJOR;
- readbackDesc.Flags = D3D12_RESOURCE_FLAG_NONE;
- /* Figure out how much we need to allocate for the upload buffer */
- D3D_CALL(data->d3dDevice, GetCopyableFootprints,
- &textureDesc,
- 0,
- 1,
- 0,
- NULL,
- NULL,
- NULL,
- &readbackDesc.Width);
- SDL_zero(heapProps);
- heapProps.Type = D3D12_HEAP_TYPE_READBACK;
- heapProps.CreationNodeMask = 1;
- heapProps.VisibleNodeMask = 1;
- result = D3D_CALL(data->d3dDevice, CreateCommittedResource,
- &heapProps,
- D3D12_HEAP_FLAG_NONE,
- &readbackDesc,
- D3D12_RESOURCE_STATE_COPY_DEST,
- NULL,
- D3D_GUID(SDL_IID_ID3D12Resource),
- (void **)&readbackBuffer);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Device::CreateTexture2D [create staging texture]"), result);
- goto done;
- }
- /* Transition the render target to be copyable from */
- D3D12_TransitionResource(data, backBuffer, D3D12_RESOURCE_STATE_RENDER_TARGET, D3D12_RESOURCE_STATE_COPY_SOURCE);
- /* Copy the desired portion of the back buffer to the staging texture: */
- if (D3D12_GetViewportAlignedD3DRect(renderer, rect, &srcRect, FALSE) != 0) {
- /* D3D12_GetViewportAlignedD3DRect will have set the SDL error */
- goto done;
- }
- srcBox.left = srcRect.left;
- srcBox.right = srcRect.right;
- srcBox.top = srcRect.top;
- srcBox.bottom = srcRect.bottom;
- srcBox.front = 0;
- srcBox.back = 1;
- /* Issue the copy texture region */
- SDL_zero(pitchedDesc);
- pitchedDesc.Format = textureDesc.Format;
- pitchedDesc.Width = (UINT)textureDesc.Width;
- pitchedDesc.Height = textureDesc.Height;
- pitchedDesc.Depth = 1;
- if (pitchedDesc.Format == DXGI_FORMAT_R8_UNORM) {
- bpp = 1;
- } else {
- bpp = 4;
- }
- pitchedDesc.RowPitch = D3D12_Align(pitchedDesc.Width * bpp, D3D12_TEXTURE_DATA_PITCH_ALIGNMENT);
- SDL_zero(placedTextureDesc);
- placedTextureDesc.Offset = 0;
- placedTextureDesc.Footprint = pitchedDesc;
- SDL_zero(dstLocation);
- dstLocation.pResource = readbackBuffer;
- dstLocation.Type = D3D12_TEXTURE_COPY_TYPE_PLACED_FOOTPRINT;
- dstLocation.PlacedFootprint = placedTextureDesc;
- SDL_zero(srcLocation);
- srcLocation.pResource = backBuffer;
- srcLocation.Type = D3D12_TEXTURE_COPY_TYPE_SUBRESOURCE_INDEX;
- srcLocation.SubresourceIndex = 0;
- D3D_CALL(data->commandList, CopyTextureRegion,
- &dstLocation,
- 0, 0, 0,
- &srcLocation,
- &srcBox);
- /* We need to issue the command list for the copy to finish */
- D3D12_IssueBatch(data);
- /* Transition the render target back to a render target */
- D3D12_TransitionResource(data, backBuffer, D3D12_RESOURCE_STATE_COPY_SOURCE, D3D12_RESOURCE_STATE_RENDER_TARGET);
- /* Map the staging texture's data to CPU-accessible memory: */
- result = D3D_CALL(readbackBuffer, Map,
- 0,
- NULL,
- (void **)&textureMemory);
- if (FAILED(result)) {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("ID3D12Resource::Map [map staging texture]"), result);
- goto done;
- }
- output = SDL_DuplicatePixels(
- rect->w, rect->h,
- D3D12_DXGIFormatToSDLPixelFormat(textureDesc.Format),
- renderer->target ? renderer->target->colorspace : renderer->output_colorspace,
- textureMemory,
- pitchedDesc.RowPitch);
- /* Unmap the texture: */
- D3D_CALL(readbackBuffer, Unmap, 0, NULL);
- done:
- SAFE_RELEASE(readbackBuffer);
- return output;
- }
- static int D3D12_RenderPresent(SDL_Renderer *renderer)
- {
- D3D12_RenderData *data = (D3D12_RenderData *)renderer->driverdata;
- #if !defined(SDL_PLATFORM_XBOXONE) && !defined(SDL_PLATFORM_XBOXSERIES)
- UINT syncInterval;
- UINT presentFlags;
- #endif
- HRESULT result;
- /* Transition the render target to present state */
- D3D12_TransitionResource(data,
- data->renderTargets[data->currentBackBufferIndex],
- D3D12_RESOURCE_STATE_RENDER_TARGET,
- D3D12_RESOURCE_STATE_PRESENT);
- /* Issue the command list */
- result = D3D_CALL(data->commandList, Close);
- D3D_CALL(data->commandQueue, ExecuteCommandLists, 1, (ID3D12CommandList *const *)&data->commandList);
- #if defined(SDL_PLATFORM_XBOXONE) || defined(SDL_PLATFORM_XBOXSERIES)
- result = D3D12_XBOX_PresentFrame(data->commandQueue, data->frameToken, data->renderTargets[data->currentBackBufferIndex]);
- #else
- if (renderer->info.flags & SDL_RENDERER_PRESENTVSYNC) {
- syncInterval = 1;
- presentFlags = 0;
- } else {
- syncInterval = 0;
- presentFlags = DXGI_PRESENT_ALLOW_TEARING;
- }
- /* The application may optionally specify "dirty" or "scroll"
- * rects to improve efficiency in certain scenarios.
- */
- result = D3D_CALL(data->swapChain, Present, syncInterval, presentFlags);
- #endif
- if (FAILED(result) && result != DXGI_ERROR_WAS_STILL_DRAWING) {
- /* If the device was removed either by a disconnect or a driver upgrade, we
- * must recreate all device resources.
- */
- if (result == DXGI_ERROR_DEVICE_REMOVED) {
- D3D12_HandleDeviceLost(renderer);
- } else if (result == DXGI_ERROR_INVALID_CALL) {
- /* We probably went through a fullscreen <-> windowed transition */
- D3D12_CreateWindowSizeDependentResources(renderer);
- } else {
- WIN_SetErrorFromHRESULT(SDL_COMPOSE_ERROR("IDXGISwapChain::Present"), result);
- }
- return -1;
- } else {
- /* Wait for the GPU and move to the next frame */
- result = D3D_CALL(data->commandQueue, Signal, data->fence, data->fenceValue);
- if (D3D_CALL(data->fence, GetCompletedValue) < data->fenceValue) {
- result = D3D_CALL(data->fence, SetEventOnCompletion,
- data->fenceValue,
- data->fenceEvent);
- WaitForSingleObjectEx(data->fenceEvent, INFINITE, FALSE);
- }
- data->fenceValue++;
- #if defined(SDL_PLATFORM_XBOXONE) || defined(SDL_PLATFORM_XBOXSERIES)
- data->currentBackBufferIndex++;
- data->currentBackBufferIndex %= SDL_D3D12_NUM_BUFFERS;
- #else
- data->currentBackBufferIndex = D3D_CALL(data->swapChain, GetCurrentBackBufferIndex);
- #endif
- /* Reset the command allocator and command list, and transition back to render target */
- D3D12_ResetCommandList(data);
- D3D12_TransitionResource(data,
- data->renderTargets[data->currentBackBufferIndex],
- D3D12_RESOURCE_STATE_PRESENT,
- D3D12_RESOURCE_STATE_RENDER_TARGET);
- #if defined(SDL_PLATFORM_XBOXONE) || defined(SDL_PLATFORM_XBOXSERIES)
- D3D12_XBOX_StartFrame(data->d3dDevice, &data->frameToken);
- #endif
- return 0;
- }
- }
- static int D3D12_SetVSync(SDL_Renderer *renderer, const int vsync)
- {
- if (vsync) {
- renderer->info.flags |= SDL_RENDERER_PRESENTVSYNC;
- } else {
- renderer->info.flags &= ~SDL_RENDERER_PRESENTVSYNC;
- }
- return 0;
- }
- SDL_Renderer *D3D12_CreateRenderer(SDL_Window *window, SDL_PropertiesID create_props)
- {
- SDL_Renderer *renderer;
- D3D12_RenderData *data;
- if (SDL_GetWindowFlags(window) & SDL_WINDOW_TRANSPARENT) {
- /* D3D12 removed the swap effect needed to support transparent windows, use D3D11 instead */
- SDL_SetError("The direct3d12 renderer doesn't work with transparent windows");
- return NULL;
- }
- renderer = (SDL_Renderer *)SDL_calloc(1, sizeof(*renderer));
- if (!renderer) {
- return NULL;
- }
- renderer->magic = &SDL_renderer_magic;
- SDL_SetupRendererColorspace(renderer, create_props);
- if (renderer->output_colorspace != SDL_COLORSPACE_SRGB &&
- renderer->output_colorspace != SDL_COLORSPACE_SCRGB
- /*&& renderer->output_colorspace != SDL_COLORSPACE_HDR10*/) {
- SDL_SetError("Unsupported output colorspace");
- SDL_free(renderer);
- return NULL;
- }
- data = (D3D12_RenderData *)SDL_calloc(1, sizeof(*data));
- if (!data) {
- SDL_free(renderer);
- return NULL;
- }
- data->identity = MatrixIdentity();
- renderer->WindowEvent = D3D12_WindowEvent;
- renderer->SupportsBlendMode = D3D12_SupportsBlendMode;
- renderer->CreateTexture = D3D12_CreateTexture;
- renderer->UpdateTexture = D3D12_UpdateTexture;
- #if SDL_HAVE_YUV
- renderer->UpdateTextureYUV = D3D12_UpdateTextureYUV;
- renderer->UpdateTextureNV = D3D12_UpdateTextureNV;
- #endif
- renderer->LockTexture = D3D12_LockTexture;
- renderer->UnlockTexture = D3D12_UnlockTexture;
- renderer->SetTextureScaleMode = D3D12_SetTextureScaleMode;
- renderer->SetRenderTarget = D3D12_SetRenderTarget;
- renderer->QueueSetViewport = D3D12_QueueNoOp;
- renderer->QueueSetDrawColor = D3D12_QueueNoOp;
- renderer->QueueSetColorScale = D3D12_QueueNoOp;
- renderer->QueueDrawPoints = D3D12_QueueDrawPoints;
- renderer->QueueDrawLines = D3D12_QueueDrawPoints; /* lines and points queue vertices the same way. */
- renderer->QueueGeometry = D3D12_QueueGeometry;
- renderer->InvalidateCachedState = D3D12_InvalidateCachedState;
- renderer->RunCommandQueue = D3D12_RunCommandQueue;
- renderer->RenderReadPixels = D3D12_RenderReadPixels;
- renderer->RenderPresent = D3D12_RenderPresent;
- renderer->DestroyTexture = D3D12_DestroyTexture;
- renderer->DestroyRenderer = D3D12_DestroyRenderer;
- renderer->info = D3D12_RenderDriver.info;
- renderer->info.flags = SDL_RENDERER_ACCELERATED;
- renderer->driverdata = data;
- D3D12_InvalidateCachedState(renderer);
- if (SDL_GetBooleanProperty(create_props, SDL_PROP_RENDERER_CREATE_PRESENT_VSYNC_BOOLEAN, SDL_FALSE)) {
- renderer->info.flags |= SDL_RENDERER_PRESENTVSYNC;
- }
- renderer->SetVSync = D3D12_SetVSync;
- /* HACK: make sure the SDL_Renderer references the SDL_Window data now, in
- * order to give init functions access to the underlying window handle:
- */
- renderer->window = window;
- /* Initialize Direct3D resources */
- if (FAILED(D3D12_CreateDeviceResources(renderer))) {
- D3D12_DestroyRenderer(renderer);
- return NULL;
- }
- if (FAILED(D3D12_CreateWindowSizeDependentResources(renderer))) {
- D3D12_DestroyRenderer(renderer);
- return NULL;
- }
- return renderer;
- }
- SDL_RenderDriver D3D12_RenderDriver = {
- D3D12_CreateRenderer,
- {
- "direct3d12",
- (SDL_RENDERER_ACCELERATED |
- SDL_RENDERER_PRESENTVSYNC), /* flags. see SDL_RendererFlags */
- 9, /* num_texture_formats */
- { /* texture_formats */
- SDL_PIXELFORMAT_ARGB8888,
- SDL_PIXELFORMAT_XRGB8888,
- SDL_PIXELFORMAT_RGBA64_FLOAT,
- SDL_PIXELFORMAT_YV12,
- SDL_PIXELFORMAT_IYUV,
- SDL_PIXELFORMAT_NV12,
- SDL_PIXELFORMAT_NV21,
- SDL_PIXELFORMAT_P010,
- SDL_PIXELFORMAT_P016 },
- 16384, /* max_texture_width */
- 16384 /* max_texture_height */
- }
- };
- /* Ends C function definitions when using C++ */
- #ifdef __cplusplus
- }
- #endif
- #endif /* SDL_VIDEO_RENDER_D3D12 && !SDL_RENDER_DISABLED */
|