Commit 64ffe647 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

d3d9/tests: Avoid LPDIRECT3DVERTEXBUFFER9.

parent 369fb518
......@@ -7014,14 +7014,14 @@ out:
static void shademode_test(IDirect3DDevice9 *device)
{
/* Render a quad and try all of the different fixed function shading models. */
struct IDirect3DVertexBuffer9 *vb_strip = NULL;
struct IDirect3DVertexBuffer9 *vb_list = NULL;
HRESULT hr;
DWORD color0, color1;
DWORD color0_gouraud = 0, color1_gouraud = 0;
DWORD shademode = D3DSHADE_FLAT;
DWORD primtype = D3DPT_TRIANGLESTRIP;
LPVOID data = NULL;
LPDIRECT3DVERTEXBUFFER9 vb_strip = NULL;
LPDIRECT3DVERTEXBUFFER9 vb_list = NULL;
UINT i, j;
struct vertex quad_strip[] =
{
......
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