mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
d3d9: Tweak a buffer declaration to fix the compilation with Visual C++.
This commit is contained in:
parent
9197f5c3df
commit
2c82c707da
@ -1303,18 +1303,15 @@ static void test_state_management(
|
||||
1 for transforms
|
||||
1 for render states
|
||||
*/
|
||||
const int max_tests = 2 + 1 + 1 + 1;
|
||||
const int max_buffer = SHADER_CONSTANTS_REQ_BUFFER * 2 +
|
||||
LIGHTS_REQ_BUFFER +
|
||||
TRANSFORMS_REQ_BUFFER +
|
||||
RENDER_STATES_REQ_BUFFER;
|
||||
state_test tests[2 + 1 + 1 + 1];
|
||||
BYTE buffer[SHADER_CONSTANTS_REQ_BUFFER * 2 +
|
||||
LIGHTS_REQ_BUFFER +
|
||||
TRANSFORMS_REQ_BUFFER +
|
||||
RENDER_STATES_REQ_BUFFER];
|
||||
|
||||
unsigned int tcount = 0;
|
||||
unsigned int bcount = 0;
|
||||
|
||||
state_test tests[max_tests];
|
||||
BYTE buffer[max_buffer];
|
||||
|
||||
hret = IDirect3DDevice9_GetDeviceCaps(device, &caps);
|
||||
ok(hret == D3D_OK, "GetDeviceCaps returned %#lx.\n", hret);
|
||||
if (hret != D3D_OK) return;
|
||||
|
Loading…
Reference in New Issue
Block a user