mirror of https://github.com/encounter/SDL.git
Added missing SDL_zero for renderTargetViewDesc
This commit is contained in:
parent
6bd49fc00c
commit
8303c5d0a3
|
@ -1540,6 +1540,7 @@ D3D12_CreateTexture(SDL_Renderer * renderer, SDL_Texture * texture)
|
|||
|
||||
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;
|
||||
|
|
Loading…
Reference in New Issue