Merge pull request #12408 from LazyFunker/master

Fix typo
This commit is contained in:
Autechre 2021-05-16 23:00:39 +02:00 committed by GitHub
commit b946b146f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1811,7 +1811,7 @@ static uintptr_t d3d11_gfx_load_texture(
switch (filter_type) switch (filter_type)
{ {
case TEXTURE_FILTER_MIPMAP_LINEAR: case TEXTURE_FILTER_MIPMAP_LINEAR:
#ifdef __WINRT__ #ifndef __WINRT__
texture->desc.MiscFlags = D3D11_RESOURCE_MISC_GENERATE_MIPS; texture->desc.MiscFlags = D3D11_RESOURCE_MISC_GENERATE_MIPS;
#endif #endif
/* fallthrough */ /* fallthrough */
@ -1819,7 +1819,7 @@ static uintptr_t d3d11_gfx_load_texture(
texture->sampler = d3d11->samplers[RARCH_FILTER_LINEAR][RARCH_WRAP_EDGE]; texture->sampler = d3d11->samplers[RARCH_FILTER_LINEAR][RARCH_WRAP_EDGE];
break; break;
case TEXTURE_FILTER_MIPMAP_NEAREST: case TEXTURE_FILTER_MIPMAP_NEAREST:
#ifdef __WINRT__ #ifndef __WINRT__
texture->desc.MiscFlags = D3D11_RESOURCE_MISC_GENERATE_MIPS; texture->desc.MiscFlags = D3D11_RESOURCE_MISC_GENERATE_MIPS;
#endif #endif
/* fallthrough */ /* fallthrough */