Commit cbd14598 authored by Stefan Dösinger's avatar Stefan Dösinger Committed by Alexandre Julliard

ddraw/tests: Disable color keying in ddraw1 test_texture_load.

parent d41ca181
...@@ -11872,6 +11872,8 @@ static void test_texture_load(void) ...@@ -11872,6 +11872,8 @@ static void test_texture_load(void)
emit_process_vertices(&ptr, D3DPROCESSVERTICES_COPY, 0, 4); emit_process_vertices(&ptr, D3DPROCESSVERTICES_COPY, 0, 4);
emit_texture_load(&ptr, dst_texture_handle, src_texture_handle); emit_texture_load(&ptr, dst_texture_handle, src_texture_handle);
emit_set_rs(&ptr, D3DRENDERSTATE_TEXTUREHANDLE, dst_texture_handle); emit_set_rs(&ptr, D3DRENDERSTATE_TEXTUREHANDLE, dst_texture_handle);
/* WARP randomly applies color keying without having a key set. */
emit_set_rs(&ptr, D3DRENDERSTATE_COLORKEYENABLE, FALSE);
emit_tquad(&ptr, 0); emit_tquad(&ptr, 0);
emit_end(&ptr); emit_end(&ptr);
inst_length = (BYTE *)ptr - (BYTE *)exec_desc.lpData - sizeof(tquad); inst_length = (BYTE *)ptr - (BYTE *)exec_desc.lpData - sizeof(tquad);
......
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