mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-24 19:27:27 +00:00
Revert "Made several variables/parameters unsigned in the DX9, DX11 and OGL plugins. They make more sense like this (given their names)."
Turns out I was wrong in my previous commit. My bad.
This reverts commit 8743166663
.
This commit is contained in:
parent
8743166663
commit
0ef3bd9c77
16 changed files with 104 additions and 98 deletions
|
@ -75,7 +75,7 @@ const char *VertexShaderVersionString();
|
|||
void ShowD3DError(HRESULT err);
|
||||
|
||||
// returns true if size was changed
|
||||
bool FixTextureSize(u32& width, u32& height);
|
||||
bool FixTextureSize(int& width, int& height);
|
||||
|
||||
// returns true if format is supported
|
||||
bool CheckTextureSupport(DWORD usage, D3DFORMAT tex_format);
|
||||
|
@ -115,8 +115,8 @@ void EnableAlphaToCoverage();
|
|||
struct Resolution
|
||||
{
|
||||
char name[32];
|
||||
unsigned int xres;
|
||||
unsigned int yres;
|
||||
int xres;
|
||||
int yres;
|
||||
std::set<D3DFORMAT> bitdepths;
|
||||
std::set<int> refreshes;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue