Commit bebaec60 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

d3dcompiler/tests: Avoid using the LPD3DBLOB COM iface type.

parent 1956eefa
......@@ -51,7 +51,7 @@ static void exec_tests(const char *name, struct shader_test tests[], unsigned in
DWORD *res;
unsigned int i, j;
BOOL diff;
LPD3DBLOB shader, messages;
ID3DBlob *shader, *messages;
for(i = 0; i < count; i++) {
/* D3DAssemble sets messages to 0 if there aren't error messages */
......@@ -1406,7 +1406,7 @@ static void failure_test(void) {
};
HRESULT hr;
unsigned int i;
LPD3DBLOB shader, messages;
ID3DBlob *shader, *messages;
for(i = 0; i < (sizeof(tests) / sizeof(tests[0])); i++) {
shader = NULL;
......@@ -1533,7 +1533,7 @@ static void assembleshader_test(void) {
}
};
HRESULT hr;
LPD3DBLOB shader, messages;
ID3DBlob *shader, *messages;
struct D3DIncludeImpl include;
/* defines test */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment