This is the third serie related to rewriting cmd's command engine.
Currently, cmd stores block of commands as a linked list of CMD_LIST. Even for nested commands (like 'if' command inside a 'for' command), it's parsed as a single list of commands, using a 'depth' attribute and marker for end of block to describe the structure.
This leads to several issues: - parsing for nested commands is not 100% robust, - chaining of commands (and its precedence) is not handled, - no separation between parsing and execution (esp. for 'IF' and 'FOR' commands, which behave slightly differently than regular commands when dealing with variables with delayed expansion), - data model doesn't 100% fit native behavior (eg redirections can apply to a block of commands, whereas redirections are attached to individual commands) - ...
The final goal is to replace this with: - a tree of commands: + binary nodes for command chaining, + 'IF' and 'FOR' commands being parsed and stored as such + leaf being a command
It will require a couple more series to reach that goal, so this series puts in place the basic building bits: - introducing a new structure CMD_NODE to hold that each node of such a tree, - moving the chaining operator into that CMD_NODE (meaning that we move from a linked list to a binary tree degenerated into a list: left is command, right is next node).
-- v2: programs/cmd: Move operator from CMD_COMMAND to CMD_NODE. programs/cmd: Add helpers to handle list in degenerated binary tree. programs/cmd: Introduce CMD_NODE structure. programs/cmd: Remove malloc attribute from xrealloc.
From: Eric Pouech epouech@codeweavers.com
Signed-off-by: Eric Pouech epouech@codeweavers.com --- programs/cmd/wcmd.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/programs/cmd/wcmd.h b/programs/cmd/wcmd.h index 72e5ef1ad36..0e8532929cf 100644 --- a/programs/cmd/wcmd.h +++ b/programs/cmd/wcmd.h @@ -124,8 +124,9 @@ void WCMD_free_commands(CMD_LIST *cmds); void WCMD_execute (const WCHAR *orig_command, const WCHAR *redirects, CMD_LIST **cmdList, BOOL retrycall);
-void *xrealloc(void *, size_t) __WINE_ALLOC_SIZE(2) __WINE_DEALLOC(free) __WINE_MALLOC; +void *xrealloc(void *, size_t) __WINE_ALLOC_SIZE(2) __WINE_DEALLOC(free);
+static inline void *xalloc(size_t sz) __WINE_MALLOC; static inline void *xalloc(size_t sz) { return xrealloc(NULL, sz);
From: Eric Pouech epouech@codeweavers.com
This will allow to separate better the individual command to be executed (CMD_COMMAND) from the chaining and I/O handling of several commands (CMD_NODE).
This also renames CMD_LIST into CMD_COMMAND to fit in above scheme.
Signed-off-by: Eric Pouech epouech@codeweavers.com --- programs/cmd/batch.c | 2 +- programs/cmd/builtins.c | 72 +++++++++--------- programs/cmd/wcmd.h | 30 +++++--- programs/cmd/wcmdmain.c | 163 ++++++++++++++++++++++------------------ 4 files changed, 144 insertions(+), 123 deletions(-)
diff --git a/programs/cmd/batch.c b/programs/cmd/batch.c index 3586cd45731..b68642fc29f 100644 --- a/programs/cmd/batch.c +++ b/programs/cmd/batch.c @@ -86,7 +86,7 @@ void WCMD_batch (WCHAR *file, WCHAR *command, BOOL called, WCHAR *startLabel, HA */
while (context -> skip_rest == FALSE) { - CMD_LIST *toExecute = NULL; /* Commands left to be executed */ + CMD_NODE *toExecute = NULL; /* Commands left to be executed */ if (!WCMD_ReadAndParseLine(NULL, &toExecute, h)) break; /* Note: although this batch program itself may be called, we are not retrying diff --git a/programs/cmd/builtins.c b/programs/cmd/builtins.c index 779df2b65b0..c44dc7ff37a 100644 --- a/programs/cmd/builtins.c +++ b/programs/cmd/builtins.c @@ -1519,11 +1519,11 @@ void WCMD_echo (const WCHAR *args) * first command to be executed may not be at the front of the * commands->thiscommand string (eg. it may point after a DO or ELSE) */ -static void WCMD_part_execute(CMD_LIST **cmdList, const WCHAR *firstcmd, +static void WCMD_part_execute(CMD_NODE **cmdList, const WCHAR *firstcmd, BOOL isIF, BOOL executecmds) { - CMD_LIST *curPosition = *cmdList; - int myDepth = (*cmdList)->bracketDepth; + CMD_NODE *curPosition = *cmdList; + int myDepth = (*cmdList)->single->bracketDepth;
WINE_TRACE("cmdList(%p), firstCmd(%s), doIt(%d), isIF(%d)\n", cmdList, wine_dbgstr_w(firstcmd), executecmds, isIF); @@ -1534,7 +1534,7 @@ static void WCMD_part_execute(CMD_LIST **cmdList, const WCHAR *firstcmd, /* Process the first command, if there is one */ if (executecmds && firstcmd && *firstcmd) { WCHAR *command = xstrdupW(firstcmd); - WCMD_execute (firstcmd, (*cmdList)->redirects, cmdList, FALSE); + WCMD_execute (firstcmd, (*cmdList)->single->redirects, cmdList, FALSE); free(command); }
@@ -1552,23 +1552,23 @@ static void WCMD_part_execute(CMD_LIST **cmdList, const WCHAR *firstcmd,
WINE_TRACE("Processing cmdList(%p) - delim(%d) bd(%d / %d) processThese(%d)\n", *cmdList, - (*cmdList)->prevDelim, - (*cmdList)->bracketDepth, + (*cmdList)->single->prevDelim, + (*cmdList)->single->bracketDepth, myDepth, processThese);
/* Execute any statements appended to the line */ /* FIXME: Only if previous call worked for && or failed for || */ - if ((*cmdList)->prevDelim == CMD_ONFAILURE || - (*cmdList)->prevDelim == CMD_ONSUCCESS) { - if (processThese && (*cmdList)->command) { - WCMD_execute ((*cmdList)->command, (*cmdList)->redirects, + if ((*cmdList)->single->prevDelim == CMD_ONFAILURE || + (*cmdList)->single->prevDelim == CMD_ONSUCCESS) { + if (processThese && (*cmdList)->single->command) { + WCMD_execute ((*cmdList)->single->command, (*cmdList)->single->redirects, cmdList, FALSE); } if (curPosition == *cmdList) *cmdList = (*cmdList)->nextcommand;
/* Execute any appended to the statement with (...) */ - } else if ((*cmdList)->bracketDepth > myDepth) { + } else if ((*cmdList)->single->bracketDepth > myDepth) { if (processThese) { *cmdList = WCMD_process_commands(*cmdList, TRUE, FALSE); } else { @@ -1578,19 +1578,19 @@ static void WCMD_part_execute(CMD_LIST **cmdList, const WCHAR *firstcmd,
/* End of the command - does 'ELSE ' follow as the next command? */ } else { - if (isIF && WCMD_keyword_ws_found(L"else", (*cmdList)->command)) { + if (isIF && WCMD_keyword_ws_found(L"else", (*cmdList)->single->command)) { /* Swap between if and else processing */ processThese = !executecmds;
/* Process the ELSE part */ if (processThese) { const int keyw_len = lstrlenW(L"else") + 1; - WCHAR *cmd = ((*cmdList)->command) + keyw_len; + WCHAR *cmd = ((*cmdList)->single->command) + keyw_len;
/* Skip leading whitespace between condition and the command */ while (*cmd && (*cmd==' ' || *cmd=='\t')) cmd++; if (*cmd) { - WCMD_execute (cmd, (*cmdList)->redirects, cmdList, FALSE); + WCMD_execute (cmd, (*cmdList)->single->redirects, cmdList, FALSE); } } else { /* Loop skipping all commands until we get back to the current @@ -1599,8 +1599,8 @@ static void WCMD_part_execute(CMD_LIST **cmdList, const WCHAR *firstcmd, do { *cmdList = (*cmdList)->nextcommand; } while (*cmdList && - ((*cmdList)->bracketDepth > myDepth || - (*cmdList)->prevDelim)); + ((*cmdList)->single->bracketDepth > myDepth || + (*cmdList)->single->prevDelim));
/* After the else is complete, we need to now process subsequent commands */ processThese = TRUE; @@ -1610,8 +1610,8 @@ static void WCMD_part_execute(CMD_LIST **cmdList, const WCHAR *firstcmd, /* If we were in an IF statement and we didn't find an else and yet we get back to the same bracket depth as the IF, then the IF statement is over. This is required to handle nested ifs properly */ - } else if (isIF && (*cmdList)->bracketDepth == myDepth) { - if (WCMD_keyword_ws_found(L"do", (*cmdList)->command)) { + } else if (isIF && (*cmdList)->single->bracketDepth == myDepth) { + if (WCMD_keyword_ws_found(L"do", (*cmdList)->single->command)) { WINE_TRACE("Still inside FOR-loop, not an end of IF statement\n"); *cmdList = (*cmdList)->nextcommand; } else { @@ -1935,9 +1935,9 @@ static int WCMD_for_nexttoken(int lasttoken, WCHAR *tokenstr, * forf_delims [I] - The delimiters to use when breaking the string apart * forf_tokens [I] - The tokens to use when breaking the string apart */ -static void WCMD_parse_line(CMD_LIST *cmdStart, +static void WCMD_parse_line(CMD_NODE *cmdStart, const WCHAR *firstCmd, - CMD_LIST **cmdEnd, + CMD_NODE **cmdEnd, const WCHAR variable, WCHAR *buffer, BOOL *doExecuted, @@ -2024,7 +2024,7 @@ static void WCMD_parse_line(CMD_LIST *cmdStart,
/* Execute the body of the foor loop with these values */ if (varidx >= 0 && forloopcontext.variable[varidx] && forloopcontext.variable[varidx][0] != forf_eol) { - CMD_LIST *thisCmdStart = cmdStart; + CMD_NODE *thisCmdStart = cmdStart; *doExecuted = TRUE; WCMD_part_execute(&thisCmdStart, firstCmd, FALSE, TRUE); *cmdEnd = thisCmdStart; @@ -2108,13 +2108,13 @@ static FILE* WCMD_forf_getinput(BOOL usebackq, WCHAR *itemstr, BOOL iscmd) * */
-void WCMD_for (WCHAR *p, CMD_LIST **cmdList) { +void WCMD_for (WCHAR *p, CMD_NODE **cmdList) {
WIN32_FIND_DATAW fd; HANDLE hff; int i; const int in_len = lstrlenW(L"in"); - CMD_LIST *setStart, *thisSet, *cmdStart, *cmdEnd; + CMD_NODE *setStart, *thisSet, *cmdStart, *cmdEnd; WCHAR variable[4]; int varidx = -1; WCHAR *oldvariablevalue; @@ -2129,7 +2129,7 @@ void WCMD_for (WCHAR *p, CMD_LIST **cmdList) { BOOL doExecuted = FALSE; /* Has the 'do' part been executed */ LONG numbers[3] = {0,0,0}; /* Defaults to 0 in native */ int itemNum; - CMD_LIST *thisCmdStart; + CMD_NODE *thisCmdStart; int parameterNo = 0; WCHAR forf_eol = 0; int forf_skip = 0; @@ -2219,15 +2219,15 @@ void WCMD_for (WCHAR *p, CMD_LIST **cmdList) { }
/* Save away where the set of data starts and the variable */ - thisDepth = (*cmdList)->bracketDepth; + thisDepth = (*cmdList)->single->bracketDepth; *cmdList = (*cmdList)->nextcommand; setStart = (*cmdList);
/* Skip until the close bracket */ WINE_TRACE("Searching %p as the set\n", *cmdList); while (*cmdList && - (*cmdList)->command != NULL && - (*cmdList)->bracketDepth > thisDepth) { + (*cmdList)->single->command != NULL && + (*cmdList)->single->bracketDepth > thisDepth) { WINE_TRACE("Skipping %p which is part of the set\n", *cmdList); *cmdList = (*cmdList)->nextcommand; } @@ -2238,7 +2238,7 @@ void WCMD_for (WCHAR *p, CMD_LIST **cmdList) { /* Syntax error if missing close bracket, or nothing following it and once we have the complete set, we expect a DO */ WINE_TRACE("Looking for 'do ' in %p\n", *cmdList); - if ((*cmdList == NULL) || !WCMD_keyword_ws_found(L"do", (*cmdList)->command)) { + if ((*cmdList == NULL) || !WCMD_keyword_ws_found(L"do", (*cmdList)->single->command)) { WCMD_output_stderr (WCMD_LoadMessage(WCMD_SYNTAXERR)); return; } @@ -2252,7 +2252,7 @@ void WCMD_for (WCHAR *p, CMD_LIST **cmdList) { /* Save away the starting position for the commands (and offset for the first one) */ cmdStart = *cmdList; - firstCmd = (*cmdList)->command + 3; /* Skip 'do ' */ + firstCmd = (*cmdList)->single->command + 3; /* Skip 'do ' */ itemNum = 0;
/* If we are recursing directories (ie /R), add all sub directories now, then @@ -2262,8 +2262,8 @@ void WCMD_for (WCHAR *p, CMD_LIST **cmdList) { thisSet = setStart; /* Loop through all set entries */ while (thisSet && - thisSet->command != NULL && - thisSet->bracketDepth >= thisDepth) { + thisSet->single->command != NULL && + thisSet->single->bracketDepth >= thisDepth) {
/* Loop through all entries on the same line */ WCHAR *staticitem; @@ -2272,7 +2272,7 @@ void WCMD_for (WCHAR *p, CMD_LIST **cmdList) {
WINE_TRACE("Processing for set %p\n", thisSet); i = 0; - while (*(staticitem = WCMD_parameter (thisSet->command, i, &itemStart, TRUE, FALSE))) { + while (*(staticitem = WCMD_parameter (thisSet->single->command, i, &itemStart, TRUE, FALSE))) {
/* * If the parameter within the set has a wildcard then search for matching files @@ -2516,7 +2516,7 @@ void WCMD_for (WCHAR *p, CMD_LIST **cmdList) { value needs to be the NEXT command to execute, which it either is, or we need to step over the closing bracket */ *cmdList = cmdEnd; - if (cmdEnd && cmdEnd->command == NULL) *cmdList = cmdEnd->nextcommand; + if (cmdEnd && cmdEnd->single->command == NULL) *cmdList = cmdEnd->nextcommand; }
/************************************************************************** @@ -2567,7 +2567,7 @@ void WCMD_give_help (const WCHAR *args) * FIXME: DOS is supposed to allow labels with spaces - we don't. */
-void WCMD_goto (CMD_LIST **cmdList) { +void WCMD_goto (CMD_NODE **cmdList) {
WCHAR string[MAX_PATH]; WCHAR *labelend = NULL; @@ -2903,7 +2903,7 @@ syntax_err: * * FIXME: Much more syntax checking needed! */ -void WCMD_if (WCHAR *p, CMD_LIST **cmdList) +void WCMD_if (WCHAR *p, CMD_NODE **cmdList) { int negate; /* Negate condition */ int test; /* Condition evaluation result */ @@ -4761,7 +4761,7 @@ int WCMD_volume(BOOL set_label, const WCHAR *path) * */
-void WCMD_exit (CMD_LIST **cmdList) { +void WCMD_exit (CMD_NODE **cmdList) { int rc = wcstol(param1, NULL, 10); /* Note: wcstol of empty parameter is 0 */
if (context && lstrcmpiW(quals, L"/B") == 0) { diff --git a/programs/cmd/wcmd.h b/programs/cmd/wcmd.h index 0e8532929cf..acfb26df529 100644 --- a/programs/cmd/wcmd.h +++ b/programs/cmd/wcmd.h @@ -45,14 +45,20 @@ typedef enum _CMDdelimiters {
/* Data structure to hold commands to be processed */
-typedef struct _CMD_LIST { +typedef struct _CMD_COMMAND +{ WCHAR *command; /* Command string to execute */ WCHAR *redirects; /* Redirects in place */ - struct _CMD_LIST *nextcommand; /* Next command string to execute */ CMD_DELIMITERS prevDelim; /* Previous delimiter */ int bracketDepth;/* How deep bracketing have we got to */ WCHAR pipeFile[MAX_PATH]; /* Where to get input from for pipes */ -} CMD_LIST; +} CMD_COMMAND; + +typedef struct _CMD_NODE +{ + CMD_COMMAND *single; + struct _CMD_NODE *nextcommand; /* Next command string to execute */ +} CMD_NODE;
void WCMD_assoc (const WCHAR *, BOOL); void WCMD_batch (WCHAR *, WCHAR *, BOOL, WCHAR *, HANDLE); @@ -68,12 +74,12 @@ void WCMD_directory (WCHAR *); void WCMD_echo (const WCHAR *); void WCMD_endlocal (void); void WCMD_enter_paged_mode(const WCHAR *); -void WCMD_exit (CMD_LIST **cmdList); -void WCMD_for (WCHAR *, CMD_LIST **cmdList); +void WCMD_exit (CMD_NODE **cmdList); +void WCMD_for (WCHAR *, CMD_NODE **cmdList); BOOL WCMD_get_fullpath(const WCHAR *, SIZE_T, WCHAR *, WCHAR **); void WCMD_give_help (const WCHAR *args); -void WCMD_goto (CMD_LIST **cmdList); -void WCMD_if (WCHAR *, CMD_LIST **cmdList); +void WCMD_goto (CMD_NODE **cmdList); +void WCMD_if (WCHAR *, CMD_NODE **cmdList); void WCMD_leave_paged_mode(void); void WCMD_more (WCHAR *); void WCMD_move (void); @@ -118,11 +124,11 @@ WCHAR *WCMD_LoadMessage(UINT id); void WCMD_strsubstW(WCHAR *start, const WCHAR* next, const WCHAR* insert, int len); BOOL WCMD_ReadFile(const HANDLE hIn, WCHAR *intoBuf, const DWORD maxChars, LPDWORD charsRead);
-WCHAR *WCMD_ReadAndParseLine(const WCHAR *initialcmd, CMD_LIST **output, HANDLE readFrom); -CMD_LIST *WCMD_process_commands(CMD_LIST *thisCmd, BOOL oneBracket, BOOL retrycall); -void WCMD_free_commands(CMD_LIST *cmds); +WCHAR *WCMD_ReadAndParseLine(const WCHAR *initialcmd, CMD_NODE **output, HANDLE readFrom); +CMD_NODE *WCMD_process_commands(CMD_NODE *thisCmd, BOOL oneBracket, BOOL retrycall); +void WCMD_free_commands(CMD_NODE *cmds); void WCMD_execute (const WCHAR *orig_command, const WCHAR *redirects, - CMD_LIST **cmdList, BOOL retrycall); + CMD_NODE **cmdList, BOOL retrycall);
void *xrealloc(void *, size_t) __WINE_ALLOC_SIZE(2) __WINE_DEALLOC(free);
@@ -163,7 +169,7 @@ typedef struct _BATCH_CONTEXT { int shift_count[10]; /* Offset in terms of shifts for %0 - %9 */ struct _BATCH_CONTEXT *prev_context; /* Pointer to the previous context block */ BOOL skip_rest; /* Skip the rest of the batch program and exit */ - CMD_LIST *toExecute; /* Commands left to be executed */ + CMD_NODE *toExecute; /* Commands left to be executed */ } BATCH_CONTEXT;
/* Data structure to handle building lists during recursive calls */ diff --git a/programs/cmd/wcmdmain.c b/programs/cmd/wcmdmain.c index 128610b0800..abef0f7e5f4 100644 --- a/programs/cmd/wcmdmain.c +++ b/programs/cmd/wcmdmain.c @@ -1250,7 +1250,7 @@ void WCMD_run_program (WCHAR *command, BOOL called)
/* Not found anywhere - were we called? */ if (called) { - CMD_LIST *toExecute = NULL; /* Commands left to be executed */ + CMD_NODE *toExecute = NULL; /* Commands left to be executed */
/* Parse the command string, without reading any more input */ WCMD_ReadAndParseLine(command, &toExecute, INVALID_HANDLE_VALUE); @@ -1278,7 +1278,7 @@ void WCMD_run_program (WCHAR *command, BOOL called) * we are attempting this retry. */ void WCMD_execute (const WCHAR *command, const WCHAR *redirects, - CMD_LIST **cmdList, BOOL retrycall) + CMD_NODE **cmdList, BOOL retrycall) { WCHAR *cmd, *parms_start, *redir; WCHAR *pos; @@ -1335,7 +1335,7 @@ void WCMD_execute (const WCHAR *command, const WCHAR *redirects, a change to not wait for the first app to finish but rather the pipe */ if (!(cmd_index == WCMD_FOR || cmd_index == WCMD_IF) && cmdList && (*cmdList)->nextcommand && - (*cmdList)->nextcommand->prevDelim == CMD_PIPE) { + (*cmdList)->nextcommand->single->prevDelim == CMD_PIPE) {
WCHAR temp_path[MAX_PATH];
@@ -1345,14 +1345,14 @@ void WCMD_execute (const WCHAR *command, const WCHAR *redirects,
/* Generate a unique temporary filename */ GetTempPathW(ARRAY_SIZE(temp_path), temp_path); - GetTempFileNameW(temp_path, L"CMD", 0, (*cmdList)->nextcommand->pipeFile); + GetTempFileNameW(temp_path, L"CMD", 0, (*cmdList)->nextcommand->single->pipeFile); WINE_TRACE("Using temporary file of %s\n", - wine_dbgstr_w((*cmdList)->nextcommand->pipeFile)); + wine_dbgstr_w((*cmdList)->nextcommand->single->pipeFile)); }
/* If piped output, send stdout to the pipe by appending >filename to redirects */ if (piped) { - wsprintfW (new_redir, L"%s > %s", redirects, (*cmdList)->nextcommand->pipeFile); + wsprintfW (new_redir, L"%s > %s", redirects, (*cmdList)->nextcommand->single->pipeFile); WINE_TRACE("Redirects now %s\n", wine_dbgstr_w(new_redir)); } else { lstrcpyW(new_redir, redirects); @@ -1404,9 +1404,9 @@ void WCMD_execute (const WCHAR *command, const WCHAR *redirects, */ if (!(cmd_index == WCMD_FOR || cmd_index == WCMD_IF)) { /* STDIN could come from a preceding pipe, so delete on close if it does */ - if (cmdList && (*cmdList)->pipeFile[0] != 0x00) { - WINE_TRACE("Input coming from %s\n", wine_dbgstr_w((*cmdList)->pipeFile)); - h = CreateFileW((*cmdList)->pipeFile, GENERIC_READ, + if (cmdList && (*cmdList)->single->pipeFile[0] != 0x00) { + WINE_TRACE("Input coming from %s\n", wine_dbgstr_w((*cmdList)->single->pipeFile)); + h = CreateFileW((*cmdList)->single->pipeFile, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE, &sa, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_DELETE_ON_CLOSE, NULL); if (h == INVALID_HANDLE_VALUE) { @@ -1418,7 +1418,7 @@ void WCMD_execute (const WCHAR *command, const WCHAR *redirects, SetStdHandle (STD_INPUT_HANDLE, h);
/* No need to remember the temporary name any longer once opened */ - (*cmdList)->pipeFile[0] = 0x00; + (*cmdList)->single->pipeFile[0] = 0x00;
/* Otherwise STDIN could come from a '<' redirect */ } else if ((pos = wcschr(new_redir,'<')) != NULL) { @@ -1674,18 +1674,18 @@ WCHAR *WCMD_LoadMessage(UINT id) { * * Dumps out the parsed command line to ensure syntax is correct */ -static void WCMD_DumpCommands(CMD_LIST *commands) { - CMD_LIST *thisCmd = commands; +static void WCMD_DumpCommands(CMD_NODE *commands) { + CMD_NODE *thisCmd = commands;
WINE_TRACE("Parsed line:\n"); while (thisCmd != NULL) { WINE_TRACE("%p %d %2.2d %p %s Redir:%s\n", thisCmd, - thisCmd->prevDelim, - thisCmd->bracketDepth, + thisCmd->single->prevDelim, + thisCmd->single->bracketDepth, thisCmd->nextcommand, - wine_dbgstr_w(thisCmd->command), - wine_dbgstr_w(thisCmd->redirects)); + wine_dbgstr_w(thisCmd->single->command), + wine_dbgstr_w(thisCmd->single->redirects)); thisCmd = thisCmd->nextcommand; } } @@ -1695,16 +1695,15 @@ static void WCMD_DumpCommands(CMD_LIST *commands) { * * Adds a command to the current command list */ -static void WCMD_addCommand(WCHAR *command, int *commandLen, - WCHAR *redirs, int *redirLen, - WCHAR **copyTo, int **copyToLen, - CMD_DELIMITERS prevDelim, int curDepth, - CMD_LIST **output) { - - CMD_LIST *thisEntry = NULL; +static CMD_COMMAND *WCMD_createCommand(WCHAR *command, int *commandLen, + WCHAR *redirs, int *redirLen, + WCHAR **copyTo, int **copyToLen, + CMD_DELIMITERS prevDelim, int curDepth) + { + CMD_COMMAND *thisEntry = NULL;
/* Allocate storage for command */ - thisEntry = xalloc(sizeof(CMD_LIST)); + thisEntry = xalloc(sizeof(CMD_COMMAND));
/* Copy in the command */ if (command) { @@ -1731,14 +1730,23 @@ static void WCMD_addCommand(WCHAR *command, int *commandLen, }
/* Fill in other fields */ - thisEntry->nextcommand = NULL; thisEntry->prevDelim = prevDelim; thisEntry->bracketDepth = curDepth; - - for (; *output; output = &((*output)->nextcommand)) {} - *output = thisEntry; + return thisEntry; }
+static void WCMD_appendCommand(CMD_COMMAND *command, CMD_NODE **node) +{ + CMD_NODE *new = xalloc(sizeof(CMD_NODE)); + + if (new) + { + new->single = command; + new->nextcommand = NULL; + for (; *node; node = &((*node)->nextcommand)) {} + *node = new; + } +}
/*************************************************************************** * WCMD_IsEndQuote @@ -1808,7 +1816,7 @@ static BOOL WCMD_IsEndQuote(const WCHAR *quote, int quoteIndex) * - Anything else gets put into the command string (including * redirects) */ -WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_LIST **output, HANDLE readFrom) +WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_NODE **output, HANDLE readFrom) { WCHAR *curPos; int inQuotes = 0; @@ -1819,6 +1827,7 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_LIST **output, HANDLE WCHAR *curCopyTo; int *curLen; int curDepth = 0; + CMD_COMMAND *single_cmd = NULL; CMD_DELIMITERS prevDelim = CMD_NONE; static WCHAR *extraSpace = NULL; /* Deliberately never freed */ BOOL inOneLine = FALSE; @@ -1848,6 +1857,7 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_LIST **output, HANDLE return NULL; }
+ *output = NULL; /* If initial command read in, use that, otherwise get input from handle */ if (optionalcmd != NULL) { lstrcpyW(extraSpace, optionalcmd); @@ -2086,12 +2096,11 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_LIST **output, HANDLE if (curStringLen > 0) {
/* Add the current command */ - WCMD_addCommand(curString, &curStringLen, - curRedirs, &curRedirsLen, - &curCopyTo, &curLen, - prevDelim, curDepth, - output); - + single_cmd = WCMD_createCommand(curString, &curStringLen, + curRedirs, &curRedirsLen, + &curCopyTo, &curLen, + prevDelim, curDepth); + WCMD_appendCommand(single_cmd, output); }
if (*(curPos+1) == '|') { @@ -2160,11 +2169,11 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_LIST **output, HANDLE }
/* Add the current command */ - WCMD_addCommand(curString, &curStringLen, - curRedirs, &curRedirsLen, - &curCopyTo, &curLen, - prevDelim, curDepth, - output); + single_cmd = WCMD_createCommand(curString, &curStringLen, + curRedirs, &curRedirsLen, + &curCopyTo, &curLen, + prevDelim, curDepth); + WCMD_appendCommand(single_cmd, output);
curDepth++; } else { @@ -2191,12 +2200,11 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_LIST **output, HANDLE if (curStringLen > 0) {
/* Add the current command */ - WCMD_addCommand(curString, &curStringLen, - curRedirs, &curRedirsLen, - &curCopyTo, &curLen, - prevDelim, curDepth, - output); - + single_cmd = WCMD_createCommand(curString, &curStringLen, + curRedirs, &curRedirsLen, + &curCopyTo, &curLen, + prevDelim, curDepth); + WCMD_appendCommand(single_cmd, output); }
if (*(curPos+1) == '&') { @@ -2224,20 +2232,21 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_LIST **output, HANDLE if (curStringLen) {
/* Add the current command */ - WCMD_addCommand(curString, &curStringLen, - curRedirs, &curRedirsLen, - &curCopyTo, &curLen, - prevDelim, curDepth, - output); + single_cmd = WCMD_createCommand(curString, &curStringLen, + curRedirs, &curRedirsLen, + &curCopyTo, &curLen, + prevDelim, curDepth); + WCMD_appendCommand(single_cmd, output); }
/* Add an empty entry to the command list */ prevDelim = CMD_NONE; - WCMD_addCommand(NULL, &curStringLen, - curRedirs, &curRedirsLen, - &curCopyTo, &curLen, - prevDelim, curDepth, - output); + single_cmd = WCMD_createCommand(NULL, &curStringLen, + curRedirs, &curRedirsLen, + &curCopyTo, &curLen, + prevDelim, curDepth); + WCMD_appendCommand(single_cmd, output); + curDepth--;
/* Leave inIn if necessary */ @@ -2269,11 +2278,11 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_LIST **output, HANDLE if (*curPos == 0x00 && !lastWasCaret && *curLen > 0) {
/* Add an entry to the command list */ - WCMD_addCommand(curString, &curStringLen, - curRedirs, &curRedirsLen, - &curCopyTo, &curLen, - prevDelim, curDepth, - output); + single_cmd = WCMD_createCommand(curString, &curStringLen, + curRedirs, &curRedirsLen, + &curCopyTo, &curLen, + prevDelim, curDepth); + WCMD_appendCommand(single_cmd, output);
/* If we had a single line if or else, and we pretended to add brackets, end them now */ @@ -2355,22 +2364,22 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_LIST **output, HANDLE * * Process all the commands read in so far */ -CMD_LIST *WCMD_process_commands(CMD_LIST *thisCmd, BOOL oneBracket, +CMD_NODE *WCMD_process_commands(CMD_NODE *thisCmd, BOOL oneBracket, BOOL retrycall) {
int bdepth = -1;
- if (thisCmd && oneBracket) bdepth = thisCmd->bracketDepth; + if (thisCmd && oneBracket) bdepth = thisCmd->single->bracketDepth;
/* Loop through the commands, processing them one by one */ while (thisCmd) {
- CMD_LIST *origCmd = thisCmd; + CMD_NODE *origCmd = thisCmd;
/* If processing one bracket only, and we find the end bracket entry (or less), return */ - if (oneBracket && !thisCmd->command && - bdepth <= thisCmd->bracketDepth) { + if (oneBracket && !thisCmd->single->command && + bdepth <= thisCmd->single->bracketDepth) { WINE_TRACE("Finished bracket @ %p, next command is %p\n", thisCmd, thisCmd->nextcommand); return thisCmd->nextcommand; @@ -2379,9 +2388,9 @@ CMD_LIST *WCMD_process_commands(CMD_LIST *thisCmd, BOOL oneBracket, /* Ignore the NULL entries a ')' inserts (Only 'if' cares about them and it will be handled in there) Also, skip over any batch labels (eg. :fred) */ - if (thisCmd->command && thisCmd->command[0] != ':') { - WINE_TRACE("Executing command: '%s'\n", wine_dbgstr_w(thisCmd->command)); - WCMD_execute (thisCmd->command, thisCmd->redirects, &thisCmd, retrycall); + if (thisCmd->single->command && thisCmd->single->command[0] != ':') { + WINE_TRACE("Executing command: '%s'\n", wine_dbgstr_w(thisCmd->single->command)); + WCMD_execute (thisCmd->single->command, thisCmd->single->redirects, &thisCmd, retrycall); }
/* Step on unless the command itself already stepped on */ @@ -2390,6 +2399,13 @@ CMD_LIST *WCMD_process_commands(CMD_LIST *thisCmd, BOOL oneBracket, return NULL; }
+static void WCMD_free_command(CMD_COMMAND *cmd) +{ + free(cmd->command); + free(cmd->redirects); + free(cmd); +} + /*************************************************************************** * WCMD_free_commands * @@ -2398,14 +2414,13 @@ CMD_LIST *WCMD_process_commands(CMD_LIST *thisCmd, BOOL oneBracket, * pointer will be modified within the commands, and hence a single free * routine is simpler */ -void WCMD_free_commands(CMD_LIST *cmds) { +void WCMD_free_commands(CMD_NODE *cmds) {
/* Loop through the commands, freeing them one by one */ while (cmds) { - CMD_LIST *thisCmd = cmds; + CMD_NODE *thisCmd = cmds; cmds = cmds->nextcommand; - free(thisCmd->command); - free(thisCmd->redirects); + WCMD_free_command(thisCmd->single); free(thisCmd); } } @@ -2432,7 +2447,7 @@ int __cdecl wmain (int argc, WCHAR *argvW[]) BOOL opt_q; int opt_t = 0; WCHAR comspec[MAX_PATH]; - CMD_LIST *toExecute = NULL; /* Commands left to be executed */ + CMD_NODE *toExecute = NULL; /* Commands left to be executed */ RTL_OSVERSIONINFOEXW osv; char osver[50]; STARTUPINFOW startupInfo;
From: Eric Pouech epouech@codeweavers.com
Signed-off-by: Eric Pouech epouech@codeweavers.com --- programs/cmd/builtins.c | 72 ++++++++++++++++++++--------------------- programs/cmd/wcmd.h | 18 ++++++++++- programs/cmd/wcmdmain.c | 52 ++++++++++++++--------------- 3 files changed, 79 insertions(+), 63 deletions(-)
diff --git a/programs/cmd/builtins.c b/programs/cmd/builtins.c index c44dc7ff37a..4a012166e25 100644 --- a/programs/cmd/builtins.c +++ b/programs/cmd/builtins.c @@ -1523,7 +1523,7 @@ static void WCMD_part_execute(CMD_NODE **cmdList, const WCHAR *firstcmd, BOOL isIF, BOOL executecmds) { CMD_NODE *curPosition = *cmdList; - int myDepth = (*cmdList)->single->bracketDepth; + int myDepth = CMD_node_get_depth(*cmdList);
WINE_TRACE("cmdList(%p), firstCmd(%s), doIt(%d), isIF(%d)\n", cmdList, wine_dbgstr_w(firstcmd), executecmds, isIF); @@ -1534,13 +1534,13 @@ static void WCMD_part_execute(CMD_NODE **cmdList, const WCHAR *firstcmd, /* Process the first command, if there is one */ if (executecmds && firstcmd && *firstcmd) { WCHAR *command = xstrdupW(firstcmd); - WCMD_execute (firstcmd, (*cmdList)->single->redirects, cmdList, FALSE); + WCMD_execute (firstcmd, CMD_node_get_command(*cmdList)->redirects, cmdList, FALSE); free(command); }
/* If it didn't move the position, step to next command */ - if (curPosition == *cmdList) *cmdList = (*cmdList)->nextcommand; + if (curPosition == *cmdList) *cmdList = CMD_node_next(*cmdList);
/* Process any other parts of the command */ if (*cmdList) { @@ -1552,74 +1552,74 @@ static void WCMD_part_execute(CMD_NODE **cmdList, const WCHAR *firstcmd,
WINE_TRACE("Processing cmdList(%p) - delim(%d) bd(%d / %d) processThese(%d)\n", *cmdList, - (*cmdList)->single->prevDelim, - (*cmdList)->single->bracketDepth, + CMD_node_get_command(*cmdList)->prevDelim, + CMD_node_get_depth(*cmdList), myDepth, processThese);
/* Execute any statements appended to the line */ /* FIXME: Only if previous call worked for && or failed for || */ - if ((*cmdList)->single->prevDelim == CMD_ONFAILURE || - (*cmdList)->single->prevDelim == CMD_ONSUCCESS) { - if (processThese && (*cmdList)->single->command) { - WCMD_execute ((*cmdList)->single->command, (*cmdList)->single->redirects, + if (CMD_node_get_command(*cmdList)->prevDelim == CMD_ONFAILURE || + CMD_node_get_command(*cmdList)->prevDelim == CMD_ONSUCCESS) { + if (processThese && CMD_node_get_command(*cmdList)->command) { + WCMD_execute (CMD_node_get_command(*cmdList)->command, CMD_node_get_command(*cmdList)->redirects, cmdList, FALSE); } - if (curPosition == *cmdList) *cmdList = (*cmdList)->nextcommand; + if (curPosition == *cmdList) *cmdList = CMD_node_next(*cmdList);
/* Execute any appended to the statement with (...) */ - } else if ((*cmdList)->single->bracketDepth > myDepth) { + } else if (CMD_node_get_depth(*cmdList) > myDepth) { if (processThese) { *cmdList = WCMD_process_commands(*cmdList, TRUE, FALSE); } else { WINE_TRACE("Skipping command %p due to stack depth\n", *cmdList); } - if (curPosition == *cmdList) *cmdList = (*cmdList)->nextcommand; + if (curPosition == *cmdList) *cmdList = CMD_node_next(*cmdList);
/* End of the command - does 'ELSE ' follow as the next command? */ } else { - if (isIF && WCMD_keyword_ws_found(L"else", (*cmdList)->single->command)) { + if (isIF && WCMD_keyword_ws_found(L"else", CMD_node_get_command(*cmdList)->command)) { /* Swap between if and else processing */ processThese = !executecmds;
/* Process the ELSE part */ if (processThese) { const int keyw_len = lstrlenW(L"else") + 1; - WCHAR *cmd = ((*cmdList)->single->command) + keyw_len; + WCHAR *cmd = (CMD_node_get_command(*cmdList)->command) + keyw_len;
/* Skip leading whitespace between condition and the command */ while (*cmd && (*cmd==' ' || *cmd=='\t')) cmd++; if (*cmd) { - WCMD_execute (cmd, (*cmdList)->single->redirects, cmdList, FALSE); + WCMD_execute (cmd, CMD_node_get_command(*cmdList)->redirects, cmdList, FALSE); } } else { /* Loop skipping all commands until we get back to the current depth, including skipping commands and their subsequent pipes (eg cmd | prog) */ do { - *cmdList = (*cmdList)->nextcommand; + *cmdList = CMD_node_next(*cmdList); } while (*cmdList && - ((*cmdList)->single->bracketDepth > myDepth || - (*cmdList)->single->prevDelim)); + (CMD_node_get_depth(*cmdList) > myDepth || + CMD_node_get_command(*cmdList)->prevDelim));
/* After the else is complete, we need to now process subsequent commands */ processThese = TRUE; } - if (curPosition == *cmdList) *cmdList = (*cmdList)->nextcommand; + if (curPosition == *cmdList) *cmdList = CMD_node_next(*cmdList);
/* If we were in an IF statement and we didn't find an else and yet we get back to the same bracket depth as the IF, then the IF statement is over. This is required to handle nested ifs properly */ - } else if (isIF && (*cmdList)->single->bracketDepth == myDepth) { - if (WCMD_keyword_ws_found(L"do", (*cmdList)->single->command)) { + } else if (isIF && CMD_node_get_depth(*cmdList) == myDepth) { + if (WCMD_keyword_ws_found(L"do", CMD_node_get_command(*cmdList)->command)) { WINE_TRACE("Still inside FOR-loop, not an end of IF statement\n"); - *cmdList = (*cmdList)->nextcommand; + *cmdList = CMD_node_next(*cmdList); } else { WINE_TRACE("Found end of this nested IF statement, ending this if\n"); break; } } else if (!processThese) { - if (curPosition == *cmdList) *cmdList = (*cmdList)->nextcommand; + if (curPosition == *cmdList) *cmdList = CMD_node_next(*cmdList); WINE_TRACE("Skipping this command, as in not process mode (next = %p)\n", *cmdList); } else { WINE_TRACE("Found end of this IF statement (next = %p)\n", *cmdList); @@ -2219,26 +2219,26 @@ void WCMD_for (WCHAR *p, CMD_NODE **cmdList) { }
/* Save away where the set of data starts and the variable */ - thisDepth = (*cmdList)->single->bracketDepth; - *cmdList = (*cmdList)->nextcommand; + thisDepth = CMD_node_get_depth(*cmdList); + *cmdList = CMD_node_next(*cmdList); setStart = (*cmdList);
/* Skip until the close bracket */ WINE_TRACE("Searching %p as the set\n", *cmdList); while (*cmdList && - (*cmdList)->single->command != NULL && - (*cmdList)->single->bracketDepth > thisDepth) { + CMD_node_get_command(*cmdList)->command != NULL && + CMD_node_get_depth(*cmdList) > thisDepth) { WINE_TRACE("Skipping %p which is part of the set\n", *cmdList); - *cmdList = (*cmdList)->nextcommand; + *cmdList = CMD_node_next(*cmdList); }
/* Skip the close bracket, if there is one */ - if (*cmdList) *cmdList = (*cmdList)->nextcommand; + if (*cmdList) *cmdList = CMD_node_next(*cmdList);
/* Syntax error if missing close bracket, or nothing following it and once we have the complete set, we expect a DO */ WINE_TRACE("Looking for 'do ' in %p\n", *cmdList); - if ((*cmdList == NULL) || !WCMD_keyword_ws_found(L"do", (*cmdList)->single->command)) { + if ((*cmdList == NULL) || !WCMD_keyword_ws_found(L"do", CMD_node_get_command(*cmdList)->command)) { WCMD_output_stderr (WCMD_LoadMessage(WCMD_SYNTAXERR)); return; } @@ -2252,7 +2252,7 @@ void WCMD_for (WCHAR *p, CMD_NODE **cmdList) { /* Save away the starting position for the commands (and offset for the first one) */ cmdStart = *cmdList; - firstCmd = (*cmdList)->single->command + 3; /* Skip 'do ' */ + firstCmd = CMD_node_get_command(*cmdList)->command + 3; /* Skip 'do ' */ itemNum = 0;
/* If we are recursing directories (ie /R), add all sub directories now, then @@ -2262,8 +2262,8 @@ void WCMD_for (WCHAR *p, CMD_NODE **cmdList) { thisSet = setStart; /* Loop through all set entries */ while (thisSet && - thisSet->single->command != NULL && - thisSet->single->bracketDepth >= thisDepth) { + CMD_node_get_command(thisSet)->command != NULL && + CMD_node_get_depth(thisSet) >= thisDepth) {
/* Loop through all entries on the same line */ WCHAR *staticitem; @@ -2272,7 +2272,7 @@ void WCMD_for (WCHAR *p, CMD_NODE **cmdList) {
WINE_TRACE("Processing for set %p\n", thisSet); i = 0; - while (*(staticitem = WCMD_parameter (thisSet->single->command, i, &itemStart, TRUE, FALSE))) { + while (*(staticitem = WCMD_parameter (CMD_node_get_command(thisSet)->command, i, &itemStart, TRUE, FALSE))) {
/* * If the parameter within the set has a wildcard then search for matching files @@ -2455,7 +2455,7 @@ void WCMD_for (WCHAR *p, CMD_NODE **cmdList) { }
/* Move onto the next set line */ - if (thisSet) thisSet = thisSet->nextcommand; + if (thisSet) thisSet = CMD_node_next(thisSet); }
/* If /L is provided, now run the for loop */ @@ -2516,7 +2516,7 @@ void WCMD_for (WCHAR *p, CMD_NODE **cmdList) { value needs to be the NEXT command to execute, which it either is, or we need to step over the closing bracket */ *cmdList = cmdEnd; - if (cmdEnd && cmdEnd->single->command == NULL) *cmdList = cmdEnd->nextcommand; + if (cmdEnd && CMD_node_get_command(cmdEnd)->command == NULL) *cmdList = CMD_node_next(cmdEnd); }
/************************************************************************** diff --git a/programs/cmd/wcmd.h b/programs/cmd/wcmd.h index acfb26df529..f004dfe4c4d 100644 --- a/programs/cmd/wcmd.h +++ b/programs/cmd/wcmd.h @@ -40,7 +40,7 @@ typedef enum _CMDdelimiters { CMD_NONE, /* End of line or single & */ CMD_ONFAILURE, /* || */ CMD_ONSUCCESS, /* && */ - CMD_PIPE /* Single | */ + CMD_PIPE, /* Single | */ } CMD_DELIMITERS;
/* Data structure to hold commands to be processed */ @@ -60,6 +60,22 @@ typedef struct _CMD_NODE struct _CMD_NODE *nextcommand; /* Next command string to execute */ } CMD_NODE;
+/* temporary helpers to fake a list into a tree */ +/* Note: for binary op, left should be a CMD_SINGLE node */ +static inline CMD_COMMAND *CMD_node_get_command(const CMD_NODE *node) +{ + return node->single; +} +static inline CMD_NODE *CMD_node_next(const CMD_NODE *node) +{ + return node->nextcommand; +} +static inline int CMD_node_get_depth(const CMD_NODE *node) +{ + return node->single->bracketDepth; +} +/* end temporary */ + void WCMD_assoc (const WCHAR *, BOOL); void WCMD_batch (WCHAR *, WCHAR *, BOOL, WCHAR *, HANDLE); void WCMD_call (WCHAR *command); diff --git a/programs/cmd/wcmdmain.c b/programs/cmd/wcmdmain.c index abef0f7e5f4..ce7a32d79e0 100644 --- a/programs/cmd/wcmdmain.c +++ b/programs/cmd/wcmdmain.c @@ -1334,8 +1334,8 @@ void WCMD_execute (const WCHAR *command, const WCHAR *redirects, process has to finish before the next one can start but this requires a change to not wait for the first app to finish but rather the pipe */ if (!(cmd_index == WCMD_FOR || cmd_index == WCMD_IF) && - cmdList && (*cmdList)->nextcommand && - (*cmdList)->nextcommand->single->prevDelim == CMD_PIPE) { + cmdList && CMD_node_next(*cmdList) && + CMD_node_get_command(CMD_node_next(*cmdList))->prevDelim == CMD_PIPE) {
WCHAR temp_path[MAX_PATH];
@@ -1345,14 +1345,14 @@ void WCMD_execute (const WCHAR *command, const WCHAR *redirects,
/* Generate a unique temporary filename */ GetTempPathW(ARRAY_SIZE(temp_path), temp_path); - GetTempFileNameW(temp_path, L"CMD", 0, (*cmdList)->nextcommand->single->pipeFile); + GetTempFileNameW(temp_path, L"CMD", 0, CMD_node_get_command(CMD_node_next(*cmdList))->pipeFile); WINE_TRACE("Using temporary file of %s\n", - wine_dbgstr_w((*cmdList)->nextcommand->single->pipeFile)); + wine_dbgstr_w(CMD_node_get_command(CMD_node_next(*cmdList))->pipeFile)); }
/* If piped output, send stdout to the pipe by appending >filename to redirects */ if (piped) { - wsprintfW (new_redir, L"%s > %s", redirects, (*cmdList)->nextcommand->single->pipeFile); + wsprintfW (new_redir, L"%s > %s", redirects, CMD_node_get_command(CMD_node_next(*cmdList))->pipeFile); WINE_TRACE("Redirects now %s\n", wine_dbgstr_w(new_redir)); } else { lstrcpyW(new_redir, redirects); @@ -1404,9 +1404,9 @@ void WCMD_execute (const WCHAR *command, const WCHAR *redirects, */ if (!(cmd_index == WCMD_FOR || cmd_index == WCMD_IF)) { /* STDIN could come from a preceding pipe, so delete on close if it does */ - if (cmdList && (*cmdList)->single->pipeFile[0] != 0x00) { - WINE_TRACE("Input coming from %s\n", wine_dbgstr_w((*cmdList)->single->pipeFile)); - h = CreateFileW((*cmdList)->single->pipeFile, GENERIC_READ, + if (cmdList && CMD_node_get_command(*cmdList)->pipeFile[0] != 0x00) { + WINE_TRACE("Input coming from %s\n", wine_dbgstr_w(CMD_node_get_command(*cmdList)->pipeFile)); + h = CreateFileW(CMD_node_get_command(*cmdList)->pipeFile, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE, &sa, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_DELETE_ON_CLOSE, NULL); if (h == INVALID_HANDLE_VALUE) { @@ -1418,7 +1418,7 @@ void WCMD_execute (const WCHAR *command, const WCHAR *redirects, SetStdHandle (STD_INPUT_HANDLE, h);
/* No need to remember the temporary name any longer once opened */ - (*cmdList)->single->pipeFile[0] = 0x00; + CMD_node_get_command(*cmdList)->pipeFile[0] = 0x00;
/* Otherwise STDIN could come from a '<' redirect */ } else if ((pos = wcschr(new_redir,'<')) != NULL) { @@ -1681,12 +1681,12 @@ static void WCMD_DumpCommands(CMD_NODE *commands) { while (thisCmd != NULL) { WINE_TRACE("%p %d %2.2d %p %s Redir:%s\n", thisCmd, - thisCmd->single->prevDelim, - thisCmd->single->bracketDepth, - thisCmd->nextcommand, - wine_dbgstr_w(thisCmd->single->command), - wine_dbgstr_w(thisCmd->single->redirects)); - thisCmd = thisCmd->nextcommand; + CMD_node_get_command(thisCmd)->prevDelim, + CMD_node_get_depth(thisCmd), + CMD_node_next(thisCmd), + wine_dbgstr_w(CMD_node_get_command(thisCmd)->command), + wine_dbgstr_w(CMD_node_get_command(thisCmd)->redirects)); + thisCmd = CMD_node_next(thisCmd); } }
@@ -2369,7 +2369,7 @@ CMD_NODE *WCMD_process_commands(CMD_NODE *thisCmd, BOOL oneBracket,
int bdepth = -1;
- if (thisCmd && oneBracket) bdepth = thisCmd->single->bracketDepth; + if (thisCmd && oneBracket) bdepth = CMD_node_get_depth(thisCmd);
/* Loop through the commands, processing them one by one */ while (thisCmd) { @@ -2378,23 +2378,23 @@ CMD_NODE *WCMD_process_commands(CMD_NODE *thisCmd, BOOL oneBracket,
/* If processing one bracket only, and we find the end bracket entry (or less), return */ - if (oneBracket && !thisCmd->single->command && - bdepth <= thisCmd->single->bracketDepth) { + if (oneBracket && !CMD_node_get_command(thisCmd)->command && + bdepth <= CMD_node_get_depth(thisCmd)) { WINE_TRACE("Finished bracket @ %p, next command is %p\n", - thisCmd, thisCmd->nextcommand); - return thisCmd->nextcommand; + thisCmd, CMD_node_next(thisCmd)); + return CMD_node_next(thisCmd); }
/* Ignore the NULL entries a ')' inserts (Only 'if' cares about them and it will be handled in there) Also, skip over any batch labels (eg. :fred) */ - if (thisCmd->single->command && thisCmd->single->command[0] != ':') { - WINE_TRACE("Executing command: '%s'\n", wine_dbgstr_w(thisCmd->single->command)); - WCMD_execute (thisCmd->single->command, thisCmd->single->redirects, &thisCmd, retrycall); + if (CMD_node_get_command(thisCmd)->command && CMD_node_get_command(thisCmd)->command[0] != ':') { + WINE_TRACE("Executing command: '%s'\n", wine_dbgstr_w(CMD_node_get_command(thisCmd)->command)); + WCMD_execute (CMD_node_get_command(thisCmd)->command, CMD_node_get_command(thisCmd)->redirects, &thisCmd, retrycall); }
/* Step on unless the command itself already stepped on */ - if (thisCmd == origCmd) thisCmd = thisCmd->nextcommand; + if (thisCmd == origCmd) thisCmd = CMD_node_next(thisCmd); } return NULL; } @@ -2419,8 +2419,8 @@ void WCMD_free_commands(CMD_NODE *cmds) { /* Loop through the commands, freeing them one by one */ while (cmds) { CMD_NODE *thisCmd = cmds; - cmds = cmds->nextcommand; - WCMD_free_command(thisCmd->single); + cmds = CMD_node_next(cmds); + WCMD_free_command(CMD_node_get_command(thisCmd)); free(thisCmd); } }
From: Eric Pouech epouech@codeweavers.com
For now, the tree is degenerated into a list (as it was before).
Signed-off-by: Eric Pouech epouech@codeweavers.com --- programs/cmd/builtins.c | 33 +++++++--- programs/cmd/wcmd.h | 37 +++++++---- programs/cmd/wcmdmain.c | 136 ++++++++++++++++++++++++++-------------- 3 files changed, 136 insertions(+), 70 deletions(-)
diff --git a/programs/cmd/builtins.c b/programs/cmd/builtins.c index 4a012166e25..bc9ba9e5f11 100644 --- a/programs/cmd/builtins.c +++ b/programs/cmd/builtins.c @@ -1524,6 +1524,7 @@ static void WCMD_part_execute(CMD_NODE **cmdList, const WCHAR *firstcmd, { CMD_NODE *curPosition = *cmdList; int myDepth = CMD_node_get_depth(*cmdList); + CMD_OPERATOR prev_op = CMD_CONCAT;
WINE_TRACE("cmdList(%p), firstCmd(%s), doIt(%d), isIF(%d)\n", cmdList, wine_dbgstr_w(firstcmd), executecmds, isIF); @@ -1550,31 +1551,40 @@ static void WCMD_part_execute(CMD_NODE **cmdList, const WCHAR *firstcmd, /* execute all appropriate commands */ curPosition = *cmdList;
- WINE_TRACE("Processing cmdList(%p) - delim(%d) bd(%d / %d) processThese(%d)\n", + WINE_TRACE("Processing cmdList(%p) - operator(%d) bd(%d / %d) processThese(%d)\n", *cmdList, - CMD_node_get_command(*cmdList)->prevDelim, + prev_op, CMD_node_get_depth(*cmdList), myDepth, processThese);
/* Execute any statements appended to the line */ /* FIXME: Only if previous call worked for && or failed for || */ - if (CMD_node_get_command(*cmdList)->prevDelim == CMD_ONFAILURE || - CMD_node_get_command(*cmdList)->prevDelim == CMD_ONSUCCESS) { + if (prev_op == CMD_ONFAILURE || + prev_op == CMD_ONSUCCESS) { if (processThese && CMD_node_get_command(*cmdList)->command) { WCMD_execute (CMD_node_get_command(*cmdList)->command, CMD_node_get_command(*cmdList)->redirects, cmdList, FALSE); } - if (curPosition == *cmdList) *cmdList = CMD_node_next(*cmdList); + if (curPosition == *cmdList) + { + prev_op = (*cmdList)->op; + *cmdList = CMD_node_next(*cmdList); + }
/* Execute any appended to the statement with (...) */ } else if (CMD_node_get_depth(*cmdList) > myDepth) { if (processThese) { + /* FIXME this is wrong, we don't recompute prev_op */ *cmdList = WCMD_process_commands(*cmdList, TRUE, FALSE); } else { WINE_TRACE("Skipping command %p due to stack depth\n", *cmdList); } - if (curPosition == *cmdList) *cmdList = CMD_node_next(*cmdList); + if (curPosition == *cmdList) + { + prev_op = (*cmdList)->op; + *cmdList = CMD_node_next(*cmdList); + }
/* End of the command - does 'ELSE ' follow as the next command? */ } else { @@ -1597,15 +1607,20 @@ static void WCMD_part_execute(CMD_NODE **cmdList, const WCHAR *firstcmd, depth, including skipping commands and their subsequent pipes (eg cmd | prog) */ do { + prev_op = (*cmdList)->op; *cmdList = CMD_node_next(*cmdList); } while (*cmdList && (CMD_node_get_depth(*cmdList) > myDepth || - CMD_node_get_command(*cmdList)->prevDelim)); + (prev_op != CMD_SINGLE && prev_op != CMD_CONCAT)));
/* After the else is complete, we need to now process subsequent commands */ processThese = TRUE; } - if (curPosition == *cmdList) *cmdList = CMD_node_next(*cmdList); + if (curPosition == *cmdList) + { + prev_op = (*cmdList)->op; + *cmdList = CMD_node_next(*cmdList); + }
/* If we were in an IF statement and we didn't find an else and yet we get back to the same bracket depth as the IF, then the IF statement is over. This is required @@ -1613,6 +1628,7 @@ static void WCMD_part_execute(CMD_NODE **cmdList, const WCHAR *firstcmd, } else if (isIF && CMD_node_get_depth(*cmdList) == myDepth) { if (WCMD_keyword_ws_found(L"do", CMD_node_get_command(*cmdList)->command)) { WINE_TRACE("Still inside FOR-loop, not an end of IF statement\n"); + prev_op = (*cmdList)->op; *cmdList = CMD_node_next(*cmdList); } else { WINE_TRACE("Found end of this nested IF statement, ending this if\n"); @@ -1628,7 +1644,6 @@ static void WCMD_part_execute(CMD_NODE **cmdList, const WCHAR *firstcmd, } } } - return; }
static BOOL option_equals(WCHAR **haystack, const WCHAR *needle) diff --git a/programs/cmd/wcmd.h b/programs/cmd/wcmd.h index f004dfe4c4d..f538e4fc1a6 100644 --- a/programs/cmd/wcmd.h +++ b/programs/cmd/wcmd.h @@ -36,12 +36,14 @@
/* Data structure to hold commands delimiters/separators */
-typedef enum _CMDdelimiters { - CMD_NONE, /* End of line or single & */ - CMD_ONFAILURE, /* || */ - CMD_ONSUCCESS, /* && */ - CMD_PIPE, /* Single | */ -} CMD_DELIMITERS; +typedef enum _CMD_OPERATOR +{ + CMD_SINGLE, /* single command */ + CMD_CONCAT, /* & */ + CMD_ONFAILURE, /* || */ + CMD_ONSUCCESS, /* && */ + CMD_PIPE, /* Single | */ +} CMD_OPERATOR;
/* Data structure to hold commands to be processed */
@@ -49,30 +51,39 @@ typedef struct _CMD_COMMAND { WCHAR *command; /* Command string to execute */ WCHAR *redirects; /* Redirects in place */ - CMD_DELIMITERS prevDelim; /* Previous delimiter */ int bracketDepth;/* How deep bracketing have we got to */ WCHAR pipeFile[MAX_PATH]; /* Where to get input from for pipes */ } CMD_COMMAND;
typedef struct _CMD_NODE { - CMD_COMMAND *single; - struct _CMD_NODE *nextcommand; /* Next command string to execute */ + CMD_OPERATOR op; /* operator */ + union + { + CMD_COMMAND *command; /* CMD_SINGLE */ + struct /* binary operator (CMD_CONCAT, ONFAILURE, ONSUCCESS, PIPE) */ + { + struct _CMD_NODE *left; + struct _CMD_NODE *right; + }; + }; } CMD_NODE; - /* temporary helpers to fake a list into a tree */ /* Note: for binary op, left should be a CMD_SINGLE node */ static inline CMD_COMMAND *CMD_node_get_command(const CMD_NODE *node) { - return node->single; + if (node->op == CMD_SINGLE) return node->command; + /* assert(node->left && node->left->op == CMD_SINGLE); */ + return node->left->command; } static inline CMD_NODE *CMD_node_next(const CMD_NODE *node) { - return node->nextcommand; + return (node->op == CMD_SINGLE) ? NULL : node->right; } static inline int CMD_node_get_depth(const CMD_NODE *node) { - return node->single->bracketDepth; + CMD_COMMAND *cmd = CMD_node_get_command(node); + return cmd->bracketDepth; } /* end temporary */
diff --git a/programs/cmd/wcmdmain.c b/programs/cmd/wcmdmain.c index ce7a32d79e0..2c5cf4a3196 100644 --- a/programs/cmd/wcmdmain.c +++ b/programs/cmd/wcmdmain.c @@ -942,6 +942,31 @@ static void WCMD_parse (const WCHAR *s, WCHAR *q, WCHAR *p1, WCHAR *p2) } }
+/* ============================== */ +/* Data structures for commands */ +/* ============================== */ + +static CMD_NODE *node_create_single(CMD_COMMAND *c) +{ + CMD_NODE *new = xalloc(sizeof(CMD_NODE)); + + new->op = CMD_SINGLE; + new->command = c; + + return new; +} + +static CMD_NODE *node_create_binary(CMD_OPERATOR op, CMD_NODE *l, CMD_NODE *r) +{ + CMD_NODE *new = xalloc(sizeof(CMD_NODE)); + + new->op = op; + new->left = l; + new->right = r; + + return new; +} + static void init_msvcrt_io_block(STARTUPINFOW* st) { STARTUPINFOW st_p; @@ -1334,8 +1359,7 @@ void WCMD_execute (const WCHAR *command, const WCHAR *redirects, process has to finish before the next one can start but this requires a change to not wait for the first app to finish but rather the pipe */ if (!(cmd_index == WCMD_FOR || cmd_index == WCMD_IF) && - cmdList && CMD_node_next(*cmdList) && - CMD_node_get_command(CMD_node_next(*cmdList))->prevDelim == CMD_PIPE) { + cmdList && (*cmdList)->op == CMD_PIPE) {
WCHAR temp_path[MAX_PATH];
@@ -1669,24 +1693,33 @@ WCHAR *WCMD_LoadMessage(UINT id) { return msg; }
+static const char *op2str(CMD_OPERATOR op) +{ + static const char* optable[] = {"op-single", "op-&", "op-||", "op-&&", "op-|"}; + if (op < ARRAY_SIZE(optable)) return optable[op]; + return "op-unk"; +} + /*************************************************************************** * WCMD_DumpCommands * * Dumps out the parsed command line to ensure syntax is correct */ -static void WCMD_DumpCommands(CMD_NODE *commands) { +static void WCMD_DumpCommands(CMD_NODE *commands) +{ CMD_NODE *thisCmd = commands;
WINE_TRACE("Parsed line:\n"); - while (thisCmd != NULL) { - WINE_TRACE("%p %d %2.2d %p %s Redir:%s\n", - thisCmd, - CMD_node_get_command(thisCmd)->prevDelim, - CMD_node_get_depth(thisCmd), - CMD_node_next(thisCmd), - wine_dbgstr_w(CMD_node_get_command(thisCmd)->command), - wine_dbgstr_w(CMD_node_get_command(thisCmd)->redirects)); - thisCmd = CMD_node_next(thisCmd); + while (thisCmd != NULL) + { + TRACE("%p %2.2d %p %s Redir:%s %s\n", + thisCmd, + CMD_node_get_depth(thisCmd), + CMD_node_next(thisCmd), + wine_dbgstr_w(CMD_node_get_command(thisCmd)->command), + wine_dbgstr_w(CMD_node_get_command(thisCmd)->redirects), + op2str(thisCmd->op)); + thisCmd = CMD_node_next(thisCmd); } }
@@ -1698,8 +1731,8 @@ static void WCMD_DumpCommands(CMD_NODE *commands) { static CMD_COMMAND *WCMD_createCommand(WCHAR *command, int *commandLen, WCHAR *redirs, int *redirLen, WCHAR **copyTo, int **copyToLen, - CMD_DELIMITERS prevDelim, int curDepth) - { + int curDepth) +{ CMD_COMMAND *thisEntry = NULL;
/* Allocate storage for command */ @@ -1730,21 +1763,24 @@ static CMD_COMMAND *WCMD_createCommand(WCHAR *command, int *commandLen, }
/* Fill in other fields */ - thisEntry->prevDelim = prevDelim; thisEntry->bracketDepth = curDepth; return thisEntry; }
-static void WCMD_appendCommand(CMD_COMMAND *command, CMD_NODE **node) +static void WCMD_appendCommand(CMD_OPERATOR op, CMD_COMMAND *command, CMD_NODE **node) { - CMD_NODE *new = xalloc(sizeof(CMD_NODE)); + /* append as left to right operators */ + if (*node) + { + CMD_NODE **last = node; + while ((*last)->op != CMD_SINGLE) + last = &(*last)->right;
- if (new) + *last = node_create_binary(op, *last, node_create_single(command)); + } + else { - new->single = command; - new->nextcommand = NULL; - for (; *node; node = &((*node)->nextcommand)) {} - *node = new; + *node = node_create_single(command); } }
@@ -1828,7 +1864,7 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_NODE **output, HANDLE int *curLen; int curDepth = 0; CMD_COMMAND *single_cmd = NULL; - CMD_DELIMITERS prevDelim = CMD_NONE; + CMD_OPERATOR cmd_op = CMD_CONCAT; static WCHAR *extraSpace = NULL; /* Deliberately never freed */ BOOL inOneLine = FALSE; BOOL inFor = FALSE; @@ -2099,15 +2135,15 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_NODE **output, HANDLE single_cmd = WCMD_createCommand(curString, &curStringLen, curRedirs, &curRedirsLen, &curCopyTo, &curLen, - prevDelim, curDepth); - WCMD_appendCommand(single_cmd, output); + curDepth); + WCMD_appendCommand(cmd_op, single_cmd, output); }
if (*(curPos+1) == '|') { curPos++; /* Skip other | */ - prevDelim = CMD_ONFAILURE; + cmd_op = CMD_ONFAILURE; } else { - prevDelim = CMD_PIPE; + cmd_op = CMD_PIPE; }
/* If in an IF or ELSE statement, put subsequent chained @@ -2172,8 +2208,8 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_NODE **output, HANDLE single_cmd = WCMD_createCommand(curString, &curStringLen, curRedirs, &curRedirsLen, &curCopyTo, &curLen, - prevDelim, curDepth); - WCMD_appendCommand(single_cmd, output); + curDepth); + WCMD_appendCommand(cmd_op, single_cmd, output);
curDepth++; } else { @@ -2203,15 +2239,15 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_NODE **output, HANDLE single_cmd = WCMD_createCommand(curString, &curStringLen, curRedirs, &curRedirsLen, &curCopyTo, &curLen, - prevDelim, curDepth); - WCMD_appendCommand(single_cmd, output); + curDepth); + WCMD_appendCommand(cmd_op, single_cmd, output); }
if (*(curPos+1) == '&') { curPos++; /* Skip other & */ - prevDelim = CMD_ONSUCCESS; + cmd_op = CMD_ONSUCCESS; } else { - prevDelim = CMD_NONE; + cmd_op = CMD_CONCAT; } /* If in an IF or ELSE statement, put subsequent chained commands at a higher depth as if brackets were supplied @@ -2235,17 +2271,17 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_NODE **output, HANDLE single_cmd = WCMD_createCommand(curString, &curStringLen, curRedirs, &curRedirsLen, &curCopyTo, &curLen, - prevDelim, curDepth); - WCMD_appendCommand(single_cmd, output); + curDepth); + WCMD_appendCommand(cmd_op, single_cmd, output); }
/* Add an empty entry to the command list */ - prevDelim = CMD_NONE; + cmd_op = CMD_CONCAT; single_cmd = WCMD_createCommand(NULL, &curStringLen, curRedirs, &curRedirsLen, &curCopyTo, &curLen, - prevDelim, curDepth); - WCMD_appendCommand(single_cmd, output); + curDepth); + WCMD_appendCommand(cmd_op, single_cmd, output);
curDepth--;
@@ -2281,8 +2317,8 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_NODE **output, HANDLE single_cmd = WCMD_createCommand(curString, &curStringLen, curRedirs, &curRedirsLen, &curCopyTo, &curLen, - prevDelim, curDepth); - WCMD_appendCommand(single_cmd, output); + curDepth); + WCMD_appendCommand(cmd_op, single_cmd, output);
/* If we had a single line if or else, and we pretended to add brackets, end them now */ @@ -2302,7 +2338,7 @@ WCHAR *WCMD_ReadAndParseLine(const WCHAR *optionalcmd, CMD_NODE **output, HANDLE WINE_TRACE("Need to read more data as outstanding brackets or carets\n"); inOneLine = FALSE; ignoreBracket = FALSE; - prevDelim = CMD_NONE; + cmd_op = CMD_CONCAT; inQuotes = 0; memset(extraSpace, 0x00, (MAXSTRING+1) * sizeof(WCHAR)); extraData = extraSpace; @@ -2414,14 +2450,18 @@ static void WCMD_free_command(CMD_COMMAND *cmd) * pointer will be modified within the commands, and hence a single free * routine is simpler */ -void WCMD_free_commands(CMD_NODE *cmds) { - +void WCMD_free_commands(CMD_NODE *cmds) +{ /* Loop through the commands, freeing them one by one */ - while (cmds) { - CMD_NODE *thisCmd = cmds; - cmds = CMD_node_next(cmds); - WCMD_free_command(CMD_node_get_command(thisCmd)); - free(thisCmd); + while (cmds) + { + CMD_NODE *thisCmd = cmds; + cmds = CMD_node_next(cmds); + if (thisCmd->op == CMD_SINGLE) + WCMD_free_command(thisCmd->command); + else + WCMD_free_commands(thisCmd->left); + free(thisCmd); } }
Hi,
It looks like your patch introduced the new failures shown below. Please investigate and fix them before resubmitting your patch. If they are not new, fixing them anyway would help a lot. Otherwise please ask for the known failures list to be updated.
The tests also ran into some preexisting test failures. If you know how to fix them that would be helpful. See the TestBot job for the details:
The full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=145503
Your paranoid android.
=== debian11b (64 bit WoW report) ===
d2d1: d2d1.c:4043: Test failed: Surface does not match. d2d1.c:2225: Test failed: Surface does not match. d2d1.c:4124: Test failed: Surface does not match. d2d1.c:2953: Test failed: Got unexpected colour 0xff4040ff at position {320, 180}. d2d1.c:2953: Test failed: Got unexpected colour 0xff406dd3 at position {380, 180}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {240, 210}. d2d1.c:2953: Test failed: Got unexpected colour 0xff4093ad at position {280, 210}. d2d1.c:2953: Test failed: Got unexpected colour 0xff409ca4 at position {320, 210}. d2d1.c:2953: Test failed: Got unexpected colour 0xff40a59b at position {360, 210}. d2d1.c:2953: Test failed: Got unexpected colour 0xff40ae91 at position {400, 210}. d2d1.c:2953: Test failed: Got unexpected colour 0xff45fb40 at position {280, 240}. d2d1.c:2953: Test failed: Got unexpected colour 0xff4ef240 at position {320, 240}. d2d1.c:2953: Test failed: Got unexpected colour 0xff57e940 at position {360, 240}. d2d1.c:2953: Test failed: Got unexpected colour 0xffad9340 at position {240, 270}. d2d1.c:2953: Test failed: Got unexpected colour 0xffb68a40 at position {280, 270}. d2d1.c:2953: Test failed: Got unexpected colour 0xffbf8040 at position {320, 270}. d2d1.c:2953: Test failed: Got unexpected colour 0xffc87740 at position {360, 270}. d2d1.c:2953: Test failed: Got unexpected colour 0xffff4040 at position {280, 300}. d2d1.c:2953: Test failed: Got unexpected colour 0xffff4040 at position {320, 300}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {360, 300}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {400, 300}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {440, 300}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {480, 300}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {520, 300}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {400, 330}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {440, 330}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {480, 330}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {520, 330}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {400, 360}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {440, 360}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {480, 360}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {520, 360}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {400, 390}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {440, 390}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {480, 390}. d2d1.c:2953: Test failed: Got unexpected colour 0xffffffff at position {520, 390}. d2d1.c:2361: Test failed: Surface does not match. d2d1.c:2373: Test failed: Surface does not match. d2d1.c:3150: Test failed: Got unexpected colour 0xffffffff at position {40, 30}. d2d1.c:3150: Test failed: Got unexpected colour 0xffffffff at position {80, 60}. d2d1.c:3150: Test failed: Got unexpected colour 0xffffffff at position {120, 60}. d2d1.c:3150: Test failed: Got unexpected colour 0xffffffff at position {120, 90}. d2d1.c:3150: Test failed: Got unexpected colour 0xffffffff at position {160, 90}. d2d1.c:3150: Test failed: Got unexpected colour 0xffffffff at position {120, 120}. d2d1.c:3150: Test failed: Got unexpected colour 0xffffffff at position {160, 120}. d2d1.c:3150: Test failed: Got unexpected colour 0xffffffff at position {200, 120}. d2d1.c:3150: Test failed: Got unexpected colour 0xffffffff at position {200, 150}. d2d1.c:3150: Test failed: Got unexpected colour 0xffffffff at position {280, 180}. d2d1.c:2373: Test failed: Surface does not match. d2d1.c:4292: Test failed: Figure does not match. d2d1.c:5027: Test failed: Surface does not match.
d3d10core: d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:6268: Test failed: Got unexpected color 0x800000ff. d3d10core.c:6270: Test failed: Got unexpected color 0x800000ff. d3d10core.c:5205: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 1. d3d10core.c:6281: Test failed: Got unexpected color 0x800000ff. d3d10core.c:6753: Test failed: Test 0: Got unexpected color 0x800000ff at (0). d3d10core.c:6753: Test failed: Test 0: Got unexpected color 0x800000ff at (1). d3d10core.c:6753: Test failed: Test 0: Got unexpected color 0x800000ff at (2). d3d10core.c:6753: Test failed: Test 0: Got unexpected color 0x800000ff at (3). d3d10core.c:6317: Test failed: Got unexpected color 0x00ff0000. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:6319: Test failed: Got unexpected color 0x00ff0000. d3d10core.c:6753: Test failed: Test 1: Got unexpected color 0x800000ff at (0). d3d10core.c:6753: Test failed: Test 1: Got unexpected color 0x800000ff at (1). d3d10core.c:6753: Test failed: Test 1: Got unexpected color 0x800000ff at (2). d3d10core.c:6753: Test failed: Test 1: Got unexpected color 0x800000ff at (3). d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {0.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 1. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:8231: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 1.10000000e+001, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 2. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:6753: Test failed: Test 2: Got unexpected color 0x800000ff at (0). d3d10core.c:6753: Test failed: Test 2: Got unexpected color 0x800000ff at (1). d3d10core.c:6753: Test failed: Test 2: Got unexpected color 0x800000ff at (2). d3d10core.c:6753: Test failed: Test 2: Got unexpected color 0x800000ff at (3). d3d10core.c:5219: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 3. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 4. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:6753: Test failed: Test 3: Got unexpected color 0x800000ff at (0). d3d10core.c:6753: Test failed: Test 3: Got unexpected color 0x800000ff at (1). d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 1.00000000e+001, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 5. d3d10core.c:6753: Test failed: Test 3: Got unexpected color 0x800000ff at (2). d3d10core.c:6753: Test failed: Test 3: Got unexpected color 0x800000ff at (3). d3d10core.c:8698: Test failed: Got 0xff0000ff, expected 0xffffffff at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {4.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 6. d3d10core.c:8699: Test failed: Got 0xff0000ff, expected 0x7f7f7f7f at (0, 0), sub-resource 0. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 7. d3d10core.c:6753: Test failed: Test 4: Got unexpected color 0x800000ff at (0). d3d10core.c:6753: Test failed: Test 4: Got unexpected color 0x800000ff at (1). d3d10core.c:6753: Test failed: Test 4: Got unexpected color 0x800000ff at (2). d3d10core.c:6753: Test failed: Test 4: Got unexpected color 0x800000ff at (3). d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 9.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 8. d3d10core.c:8249: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:8700: Test failed: Got 0xff0000ff, expected 0x33333333 at (0, 0), sub-resource 0. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {4.00000000e+000, 2.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 9. d3d10core.c:6753: Test failed: Test 5: Got unexpected color 0x800000ff at (0). d3d10core.c:6753: Test failed: Test 5: Got unexpected color 0x800000ff at (1). d3d10core.c:6753: Test failed: Test 5: Got unexpected color 0x800000ff at (2). d3d10core.c:6753: Test failed: Test 5: Got unexpected color 0x800000ff at (3). d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 10. d3d10core.c:8551: Test failed: Layer 0, ref 0.500000: Got 5.00000000e-001, expected 1.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 8.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 11. d3d10core.c:5232: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:8701: Test failed: Got 0xff0000ff, expected 0xff7f3300 at (0, 0), sub-resource 0. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {4.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 12. d3d10core.c:8257: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:5234: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:9224: Test failed: Got unexpected color 0x800000ff. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {4.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 13. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 7.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 14. d3d10core.c:6753: Test failed: Test 6: Got unexpected color 0x800000ff at (0). d3d10core.c:6753: Test failed: Test 6: Got unexpected color 0x800000ff at (1). d3d10core.c:6753: Test failed: Test 6: Got unexpected color 0x800000ff at (2). d3d10core.c:6753: Test failed: Test 6: Got unexpected color 0x800000ff at (3). d3d10core.c:8551: Test failed: Layer 1, ref 0.500000: Got 5.00000000e-001, expected 0.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:5236: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {5.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 15. d3d10core.c:9711: Test failed: Got color 0x800000ff at (0, 0), expected 0xffffffff. d3d10core.c:9711: Test failed: Got color 0x800000ff at (1, 0), expected 0xff000000. d3d10core.c:5238: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:9711: Test failed: Got color 0x800000ff at (2, 0), expected 0xffffffff. d3d10core.c:9711: Test failed: Got color 0x800000ff at (3, 0), expected 0xff000000. d3d10core.c:9711: Test failed: Got color 0x800000ff at (0, 1), expected 0xff00ff00. d3d10core.c:9711: Test failed: Got color 0x800000ff at (1, 1), expected 0xff0000ff. d3d10core.c:9711: Test failed: Got color 0x800000ff at (2, 1), expected 0xff00ffff. d3d10core.c:9711: Test failed: Got color 0x800000ff at (3, 1), expected 0x00000000. d3d10core.c:9711: Test failed: Got color 0x800000ff at (0, 2), expected 0xffffff00. d3d10core.c:9711: Test failed: Got color 0x800000ff at (1, 2), expected 0xffff0000. d3d10core.c:9711: Test failed: Got color 0x800000ff at (2, 2), expected 0xffff00ff. d3d10core.c:9711: Test failed: Got color 0x800000ff at (3, 2), expected 0x00000000. d3d10core.c:9711: Test failed: Got color 0x800000ff at (0, 3), expected 0xff000000. d3d10core.c:9711: Test failed: Got color 0x800000ff at (1, 3), expected 0xff7f7f7f. d3d10core.c:8262: Test failed: Got 0.00000000e+000, expected 2.00000003e-001 at (0, 0), sub-resource 0. d3d10core.c:9711: Test failed: Got color 0x800000ff at (2, 3), expected 0xffffffff. d3d10core.c:9711: Test failed: Got color 0x800000ff at (3, 3), expected 0x00000000. d3d10core.c:5240: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {5.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 16. d3d10core.c:8551: Test failed: Layer 2, ref 0.500000: Got 5.00000000e-001, expected 0.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:8712: Test failed: Got 0xff0000ff, expected 0xffffffff at (0, 0), sub-resource 0. d3d10core.c:9230: Test failed: Got unexpected color 0x800000ff. d3d10core.c:9558: Test failed: Got unexpected color 0x800000ff. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:9560: Test failed: Got unexpected color 0x800000ff. d3d10core.c:8713: Test failed: Got 0xff0000ff, expected 0x7f7f7f7f at (0, 0), sub-resource 0. d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:8551: Test failed: Layer 3, ref 0.500000: Got 5.00000000e-001, expected 0.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 6.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 17. d3d10core.c:9562: Test failed: Got unexpected color 0x800000ff. d3d10core.c:8714: Test failed: Got 0xff0000ff, expected 0x33333333 at (0, 0), sub-resource 0. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {6.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 18. d3d10core.c:8296: Test failed: Got 0.00000000e+000, expected 1.00000000e+002 at (0, 0), sub-resource 0. d3d10core.c:8715: Test failed: Got 0xff0000ff, expected 0xff7f3300 at (0, 0), sub-resource 0. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {6.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 19. d3d10core.c:8301: Test failed: Got 0.00000000e+000, expected 2.55000000e+002 at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:9575: Test failed: Got unexpected color 0x800000ff. d3d10core.c:8551: Test failed: Layer 4, ref 0.500000: Got 5.00000000e-001, expected 1.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (0, 0), expected 0xffffffff. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (1, 0), expected 0xff000000. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (2, 0), expected 0xff000000. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (3, 0), expected 0xff000000. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (0, 1), expected 0xffffff00. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (1, 1), expected 0xff0000ff. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (2, 1), expected 0xff00ffff. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (3, 1), expected 0x00000000. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (0, 2), expected 0xff7f7f7f. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (1, 2), expected 0xffff0000. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (2, 2), expected 0xffff00ff. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (3, 2), expected 0xff7f7f7f. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (0, 3), expected 0xffffffff. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (1, 3), expected 0xffffffff. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (2, 3), expected 0xff000000. d3d10core.c:10079: Test failed: Got unexpected color 0x800000ff at (3, 3), expected 0x00000000. d3d10core.c:9840: Test failed: Got 0x800000ff, expected 0x00000000 at (0, 0), sub-resource 0. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 5.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 20. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:9577: Test failed: Got unexpected color 0x800000ff. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {7.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 21. d3d10core.c:8551: Test failed: Layer 5, ref 0.500000: Got 5.00000000e-001, expected 1.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:8310: Test failed: Got 0.00000000e+000, expected 3.29999995e+000 at (0, 0), sub-resource 0. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (0, 0), expected 0xff0000ff. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {4.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (1, 0), expected 0xff00ffff. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (2, 0), expected 0xff00ff00. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (3, 0), expected 0xffffff00. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (0, 1), expected 0xffff0000. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (1, 1), expected 0xffff00ff. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (2, 1), expected 0xff000000. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (3, 1), expected 0xff7f7f7f. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (0, 2), expected 0xffffffff. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (1, 2), expected 0xffffffff. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (2, 2), expected 0xffffffff. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (3, 2), expected 0xff000000. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (0, 3), expected 0xffffffff. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (1, 3), expected 0xff000000. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (2, 3), expected 0xff000000. d3d10core.c:10095: Test failed: Got unexpected color 0x800000ff at (3, 3), expected 0xff000000. d3d10core.c:8551: Test failed: Layer 0, ref 0.000000: Got 5.00000000e-001, expected 0.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {5.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {7.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 22. d3d10core.c:8315: Test failed: Got 0.00000000e+000, expected 4.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:9587: Test failed: Got unexpected color 0x800000ff. d3d10core.c:8551: Test failed: Layer 1, ref 0.000000: Got 5.00000000e-001, expected 0.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:10143: Test failed: Got 0x800000ff, expected 0x00000000 at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {6.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (0, 0). d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (1, 0). d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (2, 0). d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (3, 0). d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (0, 1). d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (1, 1). d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (2, 1). d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (3, 1). d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (0, 2). d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (1, 2). d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (2, 2). d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (3, 2). d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (0, 3). d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (1, 3). d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (2, 3). d3d10core.c:7672: Test failed: Test 11: Got unexpected color 0x800000ff at (3, 3). d3d10core.c:3494: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 4.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 23. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {7.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:6753: Test failed: Test 10: Got unexpected color 0x800000ff at (0). d3d10core.c:6753: Test failed: Test 10: Got unexpected color 0x800000ff at (1). d3d10core.c:6753: Test failed: Test 10: Got unexpected color 0x800000ff at (2). d3d10core.c:6753: Test failed: Test 10: Got unexpected color 0x800000ff at (3). d3d10core.c:10149: Test failed: Got 0x800000ff, expected 0x00000000 at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {8.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:10155: Test failed: Got 0x800000ff, expected 0x00000000 at (0, 0), sub-resource 0. d3d10core.c:8551: Test failed: Layer 3, ref 0.000000: Got 5.00000000e-001, expected 0.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:10933: Test failed: Got 0xffffffff, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {9.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:10817: Test failed: Got unexpected color 0xffffffff for index 1. d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 1. d3d10core.c:8551: Test failed: Layer 4, ref 0.000000: Got 5.00000000e-001, expected 0.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:6841: Test failed: Test 0: Got unexpected color 0x800000ff at (0). d3d10core.c:6841: Test failed: Test 0: Got unexpected color 0x800000ff at (1). d3d10core.c:6841: Test failed: Test 0: Got unexpected color 0x800000ff at (2). d3d10core.c:6841: Test failed: Test 0: Got unexpected color 0x800000ff at (3). d3d10core.c:8231: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.10000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:10933: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:8551: Test failed: Layer 5, ref 0.000000: Got 5.00000000e-001, expected 0.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:10817: Test failed: Got unexpected color 0xffffffff for index 3. d3d10core.c:8551: Test failed: Layer 0, ref 1.000000: Got 5.00000000e-001, expected 1.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:10933: Test failed: Got 0xffffffff, expected 0xffff0000 at (0, 0), sub-resource 0. d3d10core.c:11238: Test failed: Got unexpected color 0x00000000. d3d10core.c:8551: Test failed: Layer 1, ref 1.000000: Got 5.00000000e-001, expected 0.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:8249: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:11252: Test failed: Got unexpected color 0x00000000. d3d10core.c:11254: Test failed: Got unexpected color 0x00000000. d3d10core.c:8551: Test failed: Layer 2, ref 1.000000: Got 5.00000000e-001, expected 1.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:11691: Test failed: Got 1.00000000e+000, expected 0.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:11856: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:8551: Test failed: Layer 3, ref 1.000000: Got 5.00000000e-001, expected 1.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:11607: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:11698: Test failed: Got 1.00000000e+000, expected 0.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:8257: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:11608: Test failed: Got 5.00000000e-001, expected 4.00000006e-001 at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:12079: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.00000000e+001, 8.00000000e+000, 7.00000000e+000, 3.00000000e+000} at (0, 0), sub-resource 0. d3d10core.c:8551: Test failed: Layer 4, ref 1.000000: Got 5.00000000e-001, expected 1.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:12172: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:11702: Test failed: Got 1.00000000e+000, expected 6.99999988e-001 at (0, 0), sub-resource 0. d3d10core.c:10817: Test failed: Got unexpected color 0xffffffff for index 8. d3d10core.c:8262: Test failed: Got 0.00000000e+000, expected 2.00000003e-001 at (0, 0), sub-resource 0. d3d10core.c:8551: Test failed: Layer 5, ref 1.000000: Got 5.00000000e-001, expected 1.00000000e+000 at (100, 100), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {4.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:11706: Test failed: Got 1.00000000e+000, expected 6.99999988e-001 at (0, 0), sub-resource 0. d3d10core.c:12079: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.00000000e+001, 8.00000000e+000, 0.00000000e+000, 3.00000000e+000} at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {5.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:11710: Test failed: Got 1.00000000e+000, expected 5.00000000e-001 at (0, 0), sub-resource 0. d3d10core.c:12079: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {3.00000000e+000, 5.00000000e+000, 1.00000000e+000, 2.00000000e+000} at (0, 0), sub-resource 0. d3d10core.c:10817: Test failed: Got unexpected color 0xffffffff for index 9. d3d10core.c:12264: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {6.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 3. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {7.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:12172: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:13070: Test failed: Got 0x00000000, expected 0xffff0000 at (0, 0), sub-resource 0. d3d10core.c:12177: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:12474: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {9.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:12172: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:12177: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.10000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:8249: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:13584: Test failed: Got 0xff0000ff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.20000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:13225: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0xffc00000, 0x7f800000, 0xff800000, 0x3f800000} at (0, 0), sub-resource 0. d3d10core.c:12474: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.30000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:8257: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:12177: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:13592: Test failed: Got 0xff00ff00, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (0, 0), expected 0.00000000e+000. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (1, 0), expected 6.25000000e-002. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (2, 0), expected 1.25000000e-001. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (3, 0), expected 1.87500000e-001. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (0, 1), expected 2.50000000e-001. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (1, 1), expected 3.12500000e-001. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (2, 1), expected 3.75000000e-001. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (3, 1), expected 4.37500000e-001. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (0, 2), expected 5.00000000e-001. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (1, 2), expected 5.62500000e-001. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (2, 2), expected 6.25000000e-001. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (3, 2), expected 6.87500000e-001. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (0, 3), expected 7.50000000e-001. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (1, 3), expected 8.12500000e-001. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (2, 3), expected 8.75000000e-001. d3d10core.c:11734: Test failed: Got unexpected depth 1.00000000e+000 at (3, 3), expected 9.37500000e-001. d3d10core.c:13714: Test failed: Got 0xcc0000ff, expected 0xe2007fcc at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.40000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:8262: Test failed: Got 0.00000000e+000, expected 2.00000003e-001 at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.50000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:12474: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.60000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:13976: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:13978: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:13980: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:13982: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:13984: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:13993: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:13995: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:13997: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:13999: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:14001: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:7965: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.70000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:13725: Test failed: Got 0xcc0000ff, expected 0x7f00ff00 at (0, 0), sub-resource 0. d3d10core.c:13729: Test failed: Got 0x8000ff00, expected 0xcc0000ff at (0, 0), sub-resource 0. d3d10core.c:14182: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:8296: Test failed: Got 0.00000000e+000, expected 1.00000000e+002 at (0, 0), sub-resource 0. d3d10core.c:12172: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:8301: Test failed: Got 0.00000000e+000, expected 2.55000000e+002 at (0, 0), sub-resource 0. d3d10core.c:14513: Test failed: Got 0x00000000, expected 0xffffff00 at (0, 0), sub-resource 0. d3d10core.c:14358: Test failed: Got 0x00000000, expected 0xffffffff at (0, 0), sub-resource 0. d3d10core.c:14278: Test failed: Got 0xff00ff00, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:14189: Test failed: Got 0xffffffff, expected 0x00000000 at (0, 0), sub-resource 0. d3d10core.c:12177: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:8310: Test failed: Got 0.00000000e+000, expected 3.29999995e+000 at (0, 0), sub-resource 0. d3d10core.c:12172: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:13752: Test failed: Got 0x8000ff00, expected 0xcc0000ff at (0, 0), sub-resource 0. d3d10core.c:12177: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:13339: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0f0f0f0f, 0xf0f0f0f0, 0xf0f0f0f0, 0x0f0f0f0f} at (0, 0), sub-resource 0. d3d10core.c:8315: Test failed: Got 0.00000000e+000, expected 4.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:13617: Test failed: Got 0xff00ff00, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:14368: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:14517: Test failed: Got 0x00000000, expected 0xff0000ff at (400, 0), sub-resource 0. d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (0, 0). d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (1, 0). d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (2, 0). d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (3, 0). d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (0, 1). d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (1, 1). d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (2, 1). d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (3, 1). d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (0, 2). d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (1, 2). d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (2, 2). d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (3, 2). d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (0, 3). d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (1, 3). d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (2, 3). d3d10core.c:7672: Test failed: Test 30: Got unexpected color 0x800000ff at (3, 3). d3d10core.c:13622: Test failed: Got 0xff0000ff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:14373: Test failed: Got 0x00000000, expected 0xffff0000 at (0, 0), sub-resource 0. d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 2. d3d10core.c:14378: Test failed: Got 0x00000000, expected 0xffffffff at (0, 0), sub-resource 0. d3d10core.c:15300: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (0, 0). d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (1, 0). d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (2, 0). d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (3, 0). d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (0, 1). d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (1, 1). d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (2, 1). d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (3, 1). d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (0, 2). d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (1, 2). d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (2, 2). d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (3, 2). d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (0, 3). d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (1, 3). d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (2, 3). d3d10core.c:7672: Test failed: Test 31: Got unexpected color 0x800000ff at (3, 3). d3d10core.c:13622: Test failed: Got 0xff00ff00, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (0, 0). d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (1, 0). d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (2, 0). d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (3, 0). d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (0, 1). d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (1, 1). d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (2, 1). d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (3, 1). d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (0, 2). d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (1, 2). d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (2, 2). d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (3, 2). d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (0, 3). d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (1, 3). d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (2, 3). d3d10core.c:15093: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (3, 3). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (0, 0). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (1, 0). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (2, 0). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (3, 0). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (0, 1). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (1, 1). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (2, 1). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (3, 1). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (0, 2). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (1, 2). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (2, 2). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (3, 2). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (0, 3). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (1, 3). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (2, 3). d3d10core.c:7672: Test failed: Test 32: Got unexpected color 0x800000ff at (3, 3). d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xffffffff at (0, 0). d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xffffffff at (1, 0). d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 1. d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xff0000ff at (2, 0). d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xff0000ff at (3, 0). d3d10core.c:8231: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xffffffff at (0, 1). d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xffffffff at (1, 1). d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xff0000ff at (2, 1). d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xff0000ff at (3, 1). d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xff000000 at (0, 2). d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xff000000 at (1, 2). d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xff00ff00 at (2, 2). d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xff00ff00 at (3, 2). d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xff000000 at (0, 3). d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xff000000 at (1, 3). d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xff00ff00 at (2, 3). d3d10core.c:15093: Test failed: Test 4: Got 0x800000ff, expected 0xff00ff00 at (3, 3). d3d10core.c:13617: Test failed: Got 0xff0000ff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:15787: Test failed: Got 0xffffffff, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:16690: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:13622: Test failed: Got 0xff00ff00, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000de at (0, 0). d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000de at (1, 0). d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ad at (2, 0). d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ad at (3, 0). d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000de at (0, 1). d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000de at (1, 1). d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ad at (2, 1). d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ad at (3, 1). d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ba at (0, 2). d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ba at (1, 2). d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000be at (2, 2). d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000be at (3, 2). d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ba at (0, 3). d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ba at (1, 3). d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000be at (2, 3). d3d10core.c:15093: Test failed: Test 5: Got 0x800000ff, expected 0xff0000be at (3, 3). d3d10core.c:13617: Test failed: Got 0xff00ff00, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:16713: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17670: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17673: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 200), sub-resource 0. d3d10core.c:17676: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 480), sub-resource 0. d3d10core.c:15796: Test failed: Got 0xffffffff, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:17849: Test failed: Got 0xffffffff, expected 0x00000000 at (0, 0), sub-resource 0. d3d10core.c:8249: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:17670: Test failed: Got 0xffffffff, expected 0xbfff0000 at (0, 0), sub-resource 0. d3d10core.c:17673: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 200), sub-resource 0. d3d10core.c:17676: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 480), sub-resource 0. d3d10core.c:13622: Test failed: Got 0xff0000ff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000de at (0, 0). d3d10core.c:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000de at (1, 0). d3d10core.c:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ad at (2, 0). d3d10core.c:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ad at (3, 0). d3d10core.c:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000de at (0, 1). d3d10core.c:16725: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:15800: Test failed: Got 0xffffffff, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:17670: Test failed: Got 0xffffffff, expected 0x8000ff00 at (0, 0), sub-resource 0. d3d10core.c:4831: Test failed: Got unexpected query result 0x0000000000000000. d3d10core.c:17673: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 200), sub-resource 0. d3d10core.c:8257: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:17676: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 480), sub-resource 0. d3d10core.c:17849: Test failed: Got 0xffffffff, expected 0x00000000 at (0, 0), sub-resource 0. d3d10core.c:13643: Test failed: Got 0xffff0000, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 3. d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (0, 0). d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (1, 0). d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (2, 0). d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (3, 0). d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (0, 1). d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (1, 1). d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (2, 1). d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (3, 1). d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (0, 2). d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (1, 2). d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (2, 2). d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (3, 2). d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (0, 3). d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (1, 3). d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (2, 3). d3d10core.c:15093: Test failed: Test 7: Got 0x800000ff, expected 0x00000000 at (3, 3). d3d10core.c:13648: Test failed: Got 0xff00ff00, expected 0xffff0000 at (0, 0), sub-resource 0. d3d10core.c:17849: Test failed: Got 0xffffffff, expected 0x00000000 at (0, 0), sub-resource 0. d3d10core.c:15809: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:8262: Test failed: Got 0.00000000e+000, expected 2.00000003e-001 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:13664: Test failed: Got 0xff00ff00, expected 0xffff0000 at (0, 0), sub-resource 0. d3d10core.c:18299: Test failed: Got 0xffffffff, expected 0xff80ff80 at (0, 0), sub-resource 0. d3d10core.c:16725: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17750: Test failed: Got 0xffffffff, expected 0xbfff0000 at (0, 0), sub-resource 0. d3d10core.c:18367: Test failed: Got 0x00000000, expected 0xbfbfbfbf at (0, 0), sub-resource 0. d3d10core.c:17750: Test failed: Got 0xffffffff, expected 0x8000ff00 at (0, 0), sub-resource 0. d3d10core.c:16972: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:18299: Test failed: Got 0xffffffff, expected 0xffbcffbc at (0, 0), sub-resource 0. d3d10core.c:18557: Test failed: Got 0x00, expected 0xff at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:16985: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:18412: Test failed: Got 1.00000000e+000, expected 5.00000000e-001 at (0, 0), sub-resource 0. d3d10core.c:18563: Test failed: Got 0x00000000, expected 0xff7f4000 at (0, 0), sub-resource 0. d3d10core.c:18299: Test failed: Got 0xffffffff, expected 0xffdfc0a0 at (0, 0), sub-resource 0. d3d10core.c:18557: Test failed: Got 0x00, expected 0xff at (0, 0), sub-resource 0. d3d10core.c:19013: Test failed: Got 0xffffffff, expected 0xff000000 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:16997: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:18065: Test failed: Got {5.00000000e-001, 5.00000000e-001, 0.00000000e+000, 0.00000000e+000}, expected {0.00000000e+000, 4.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 0. d3d10core.c:18299: Test failed: Got 0xffffffff, expected 0xfff1e1cf at (0, 0), sub-resource 0. d3d10core.c:19161: Test failed: Got unexpected colour 0x00000000 at (0, 0, 0), expected 0xff000000. d3d10core.c:18745: Test failed: 0: Got unexpected color 0xff0000ff. d3d10core.c:18432: Test failed: Got 1.00000000e+000, expected 6.00000024e-001 at (0, 0), sub-resource 0. d3d10core.c:17189: Test failed: Got unexpected color 0xffffffff. d3d10core.c:18745: Test failed: 1: Got unexpected color 0xff0000ff. d3d10core.c:18855: Test failed: 0: Got unexpected color 0xff0000ff. d3d10core.c:18745: Test failed: 2: Got unexpected color 0xff0000ff. d3d10core.c:18434: Test failed: Got 1.00000000e+000, expected 5.00000000e-001 at (0, 0), sub-resource 0. d3d10core.c:18855: Test failed: 1: Got unexpected color 0xff0000ff. d3d10core.c:18745: Test failed: 3: Got unexpected color 0xff0000ff. d3d10core.c:18855: Test failed: 2: Got unexpected color 0xff0000ff. d3d10core.c:18299: Test failed: Got 0xffffffff, expected 0xffbcffbc at (0, 0), sub-resource 0. d3d10core.c:18745: Test failed: 4: Got unexpected color 0xff0000ff. d3d10core.c:18855: Test failed: 3: Got unexpected color 0xff0000ff. d3d10core.c:18081: Test failed: Got {5.00000000e-001, 5.00000000e-001, 0.00000000e+000, 0.00000000e+000}, expected {0.00000000e+000, 5.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 0. d3d10core.c:18745: Test failed: 5: Got unexpected color 0xff0000ff. d3d10core.c:18855: Test failed: 4: Got unexpected color 0xff0000ff. d3d10core.c:19591: Test failed: Format 0x2: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {-1.72477726e-034, 5.69045661e-028, -1.07374176e+008, -6.25985340e+018} at (0, 0), sub-resource 0. d3d10core.c:18855: Test failed: 5: Got unexpected color 0xff0000ff. d3d10core.c:18855: Test failed: 6: Got unexpected color 0xff0000ff. d3d10core.c:18745: Test failed: 6: Got unexpected color 0xff0000ff. d3d10core.c:18086: Test failed: Got {5.00000000e-001, 5.00000000e-001, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+000, 5.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (16, 0), sub-resource 0. d3d10core.c:18436: Test failed: Got 1.00000000e+000, expected 4.00000006e-001 at (0, 0), sub-resource 0. d3d10core.c:19406: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:18855: Test failed: 7: Got unexpected color 0xff0000ff. d3d10core.c:19591: Test failed: Format 0x6: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {-1.72477726e-034, 5.69045661e-028, -1.07374176e+008, 1.00000000e+000} at (0, 0), sub-resource 0. d3d10core.c:19659: Test failed: Got colour {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}. d3d10core.c:19591: Test failed: Format 0x10: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {-1.72477726e-034, 5.69045661e-028, 0.00000000e+000, 1.00000000e+000} at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:18299: Test failed: Got 0xffffffff, expected 0xfff1e1cf at (0, 0), sub-resource 0. d3d10core.c:19591: Test failed: Format 0x29: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {-1.72477726e-034, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (0, 0), sub-resource 0. d3d10core.c:17187: Test failed: Got unexpected color 0xffffffff. d3d10core.c:19704: Test failed: Got unexpected colour 0xff0000ff. d3d10core.c:19591: Test failed: Format 0x18: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {7.82991230e-001, 3.28445762e-001, 1.15347020e-001, 6.66666687e-001} at (0, 0), sub-resource 0. d3d10core.c:19591: Test failed: Format 0x1a: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.89453125e-001, 1.30000000e+001, 3.81250000e+000, 1.00000000e+000} at (0, 0), sub-resource 0. d3d10core.c:18299: Test failed: Got 0xffffffff, expected 0xff80ff80 at (0, 0), sub-resource 0. d3d10core.c:19591: Test failed: Format 0xa: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.56445313e+000, -1.12831593e-004, 1.03500000e+002, 7.57217407e-004} at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:18299: Test failed: Got 0xffffffff, expected 0xff80ff80 at (0, 0), sub-resource 0. d3d10core.c:19591: Test failed: Format 0xb: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.62226284e-001, 5.28892934e-001, 3.37773710e-001, 7.11070448e-002} at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:18299: Test failed: Got 0xffffffff, expected 0xffdfc0a0 at (0, 0), sub-resource 0. d3d10core.c:19591: Test failed: Format 0xd: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {5.24460614e-001, -9.42258954e-001, 6.75557733e-001, 1.42216250e-001} at (0, 0), sub-resource 0. d3d10core.c:18299: Test failed: Got 0xffffffff, expected 0xffdfc0a0 at (0, 0), sub-resource 0. d3d10core.c:19591: Test failed: Format 0x22: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.56445313e+000, -1.12831593e-004, 0.00000000e+000, 1.00000000e+000} at (0, 0), sub-resource 0. d3d10core.c:18299: Test failed: Got 0xffffffff, expected 0xff80ff80 at (0, 0), sub-resource 0. d3d10core.c:19591: Test failed: Format 0x23: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.62226284e-001, 5.28892934e-001, 0.00000000e+000, 1.00000000e+000} at (0, 0), sub-resource 0. d3d10core.c:19591: Test failed: Format 0x25: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {5.24460614e-001, -9.42258954e-001, 0.00000000e+000, 1.00000000e+000} at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:18299: Test failed: Got 0xffffffff, expected 0xffdfc0a0 at (0, 0), sub-resource 0. d3d10core.c:19591: Test failed: Format 0x36: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.56445313e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (0, 0), sub-resource 0. d3d10core.c:17189: Test failed: Got unexpected color 0xffffffff. d3d10core.c:19591: Test failed: Format 0x1c: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.29411772e-001, 2.62745112e-001, 3.96078438e-001, 5.29411793e-001} at (0, 0), sub-resource 0. d3d10core.c:19591: Test failed: Format 0x1f: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.59842515e-001, 5.27559042e-001, 7.95275569e-001, -9.52755928e-001} at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17187: Test failed: Got unexpected color 0xffffffff. d3d10core.c:19591: Test failed: Format 0x3d: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.29411772e-001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (0, 0), sub-resource 0. d3d10core.c:19591: Test failed: Format 0x57: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.96078438e-001, 2.62745112e-001, 1.29411772e-001, 5.29411793e-001} at (0, 0), sub-resource 0. d3d10core.c:18299: Test failed: Got 0xffffffff, expected 0xfff0dec4 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17189: Test failed: Got unexpected color 0xffffffff. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17187: Test failed: Got unexpected color 0xffffffff. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17189: Test failed: Got unexpected color 0xffffffff. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17187: Test failed: Got unexpected color 0xffffffff. d3d10core.c:17216: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0.
d3d11: d3d11.c:1576: Test failed: Got unexpected query result 0x0000000000000000. d3d11.c:8611: Test failed: Got unexpected colour 0x800000ff. d3d11.c:11299: Test failed: Got 0xff0000ff, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:11300: Test failed: Got 0xff0000ff, expected 0x7f7f7f7f at (0, 0, 0), sub-resource 0. d3d11.c:8624: Test failed: Got unexpected colour 0x800000ff. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:11301: Test failed: Got 0xff0000ff, expected 0x33333333 at (0, 0, 0), sub-resource 0. d3d11.c:11302: Test failed: Got 0xff0000ff, expected 0xff7f3300 at (0, 0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 1: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 1: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 1: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:8660: Test failed: Got unexpected colour 0x00ff0000. d3d11.c:8662: Test failed: Got unexpected colour 0x00ff0000. d3d11.c:10746: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 2: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:11945: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:11947: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:11314: Test failed: Got 0xff0000ff, expected 0x7f7f7f7f at (0, 0, 0), sub-resource 0. d3d11.c:11949: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:11951: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:10764: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:11315: Test failed: Got 0xff0000ff, expected 0x33333333 at (0, 0, 0), sub-resource 0. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:11953: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:10772: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {4.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:11316: Test failed: Got 0xff0000ff, expected 0xff7f3300 at (0, 0, 0), sub-resource 0. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:9101: Test failed: Test 6: Got unexpected colour 0x800000ff at (0). d3d11.c:9101: Test failed: Test 6: Got unexpected colour 0x800000ff at (1). d3d11.c:9101: Test failed: Test 6: Got unexpected colour 0x800000ff at (2). d3d11.c:9101: Test failed: Test 6: Got unexpected colour 0x800000ff at (3). d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:10777: Test failed: Got 0.00000000e+000, expected 2.00000003e-001 at (0, 0), sub-resource 0. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 1. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:9101: Test failed: Test 7: Got unexpected colour 0x800000ff at (0). d3d11.c:9101: Test failed: Test 7: Got unexpected colour 0x800000ff at (1). d3d11.c:9101: Test failed: Test 7: Got unexpected colour 0x800000ff at (2). d3d11.c:9101: Test failed: Test 7: Got unexpected colour 0x800000ff at (3). d3d11.c:10810: Test failed: Got 0.00000000e+000, expected 1.00000000e+002 at (0, 0), sub-resource 0. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:9101: Test failed: Test 8: Got unexpected colour 0x800000ff at (0). d3d11.c:9101: Test failed: Test 8: Got unexpected colour 0x800000ff at (1). d3d11.c:9101: Test failed: Test 8: Got unexpected colour 0x800000ff at (2). d3d11.c:9101: Test failed: Test 8: Got unexpected colour 0x800000ff at (3). d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:10815: Test failed: Got 0.00000000e+000, expected 2.55000000e+002 at (0, 0), sub-resource 0. d3d11.c:11864: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {0.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 1. d3d11.c:11976: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:11864: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 1.10000000e+001, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 2. d3d11.c:11978: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {4.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:11864: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 3. d3d11.c:9101: Test failed: Test 9: Got unexpected colour 0x800000ff at (0). d3d11.c:9101: Test failed: Test 9: Got unexpected colour 0x800000ff at (1). d3d11.c:9101: Test failed: Test 9: Got unexpected colour 0x800000ff at (2). d3d11.c:9101: Test failed: Test 9: Got unexpected colour 0x800000ff at (3). d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 1. d3d11.c:11864: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 4. d3d11.c:14000: Test failed: Got unexpected colour 0x800000ff. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:9101: Test failed: Test 10: Got unexpected colour 0x800000ff at (0). d3d11.c:9101: Test failed: Test 10: Got unexpected colour 0x800000ff at (1). d3d11.c:9101: Test failed: Test 10: Got unexpected colour 0x800000ff at (2). d3d11.c:9101: Test failed: Test 10: Got unexpected colour 0x800000ff at (3). d3d11.c:14002: Test failed: Got unexpected colour 0x800000ff. d3d11.c:10829: Test failed: Got 0.00000000e+000, expected 4.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 11: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {7.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:14013: Test failed: Got unexpected colour 0x800000ff. d3d11.c:9189: Test failed: Test 0: Got unexpected colour 0x800000ff at (0). d3d11.c:9189: Test failed: Test 0: Got unexpected colour 0x800000ff at (1). d3d11.c:9189: Test failed: Test 0: Got unexpected colour 0x800000ff at (2). d3d11.c:9189: Test failed: Test 0: Got unexpected colour 0x800000ff at (3). d3d11.c:14015: Test failed: Got unexpected colour 0x800000ff. d3d11.c:14340: Test failed: Got 0x800000ff, expected 0x00000000 at (0, 0, 0), sub-resource 0. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:11864: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 8.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 11. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {8.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:14017: Test failed: Got unexpected colour 0x800000ff. d3d11.c:14019: Test failed: Got unexpected colour 0x800000ff. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:14686: Test failed: Got colour 0x800000ff at (0, 0), expected 0xffffffff. d3d11.c:14686: Test failed: Got colour 0x800000ff at (1, 0), expected 0xff000000. d3d11.c:14686: Test failed: Got colour 0x800000ff at (2, 0), expected 0xff000000. d3d11.c:14686: Test failed: Got colour 0x800000ff at (3, 0), expected 0xff000000. d3d11.c:14686: Test failed: Got colour 0x800000ff at (0, 1), expected 0xffffff00. d3d11.c:14686: Test failed: Got colour 0x800000ff at (1, 1), expected 0xff0000ff. d3d11.c:14686: Test failed: Got colour 0x800000ff at (2, 1), expected 0xff00ffff. d3d11.c:14686: Test failed: Got colour 0x800000ff at (3, 1), expected 0x00000000. d3d11.c:14686: Test failed: Got colour 0x800000ff at (0, 2), expected 0xff7f7f7f. d3d11.c:14686: Test failed: Got colour 0x800000ff at (1, 2), expected 0xffff0000. d3d11.c:14686: Test failed: Got colour 0x800000ff at (2, 2), expected 0xffff00ff. d3d11.c:14686: Test failed: Got colour 0x800000ff at (3, 2), expected 0xff7f7f7f. d3d11.c:14686: Test failed: Got colour 0x800000ff at (1, 3), expected 0xffffffff. d3d11.c:14686: Test failed: Got colour 0x800000ff at (3, 3), expected 0x00000000. d3d11.c:11864: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {4.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 13. d3d11.c:14027: Test failed: Got unexpected colour 0x800000ff. d3d11.c:11864: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 7.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 14. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:15060: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:10746: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 14: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:15068: Test failed: Got colour 0x00000000 at (0, 0), expected 0xff0000ff. d3d11.c:15068: Test failed: Got colour 0x00000000 at (1, 0), expected 0xff00ffff. d3d11.c:15068: Test failed: Got colour 0x00000000 at (2, 0), expected 0xff00ff00. d3d11.c:15068: Test failed: Got colour 0x00000000 at (3, 0), expected 0xffffff00. d3d11.c:15068: Test failed: Got colour 0x00000000 at (0, 1), expected 0xffff0000. d3d11.c:15068: Test failed: Got colour 0x00000000 at (1, 1), expected 0xffff00ff. d3d11.c:15068: Test failed: Got colour 0x00000000 at (2, 1), expected 0xff000000. d3d11.c:15068: Test failed: Got colour 0x00000000 at (3, 1), expected 0xff7f7f7f. d3d11.c:15068: Test failed: Got colour 0x00000000 at (0, 2), expected 0xffffffff. d3d11.c:15068: Test failed: Got colour 0x00000000 at (1, 2), expected 0xffffffff. d3d11.c:15068: Test failed: Got colour 0x00000000 at (2, 2), expected 0xffffffff. d3d11.c:15068: Test failed: Got colour 0x00000000 at (3, 2), expected 0xff000000. d3d11.c:15068: Test failed: Got colour 0x00000000 at (0, 3), expected 0xffffffff. d3d11.c:15068: Test failed: Got colour 0x00000000 at (1, 3), expected 0xff000000. d3d11.c:15068: Test failed: Got colour 0x00000000 at (2, 3), expected 0xff000000. d3d11.c:15068: Test failed: Got colour 0x00000000 at (3, 3), expected 0xff000000. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:11864: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {6.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 18. d3d11.c:14439: Test failed: Got colour 0x800000ff at (0, 0), expected 0xffff8000. d3d11.c:14439: Test failed: Got colour 0x800000ff at (1, 0), expected 0xffff8080. d3d11.c:14439: Test failed: Got colour 0x800000ff at (0, 1), expected 0x80008000. d3d11.c:14439: Test failed: Got colour 0x800000ff at (1, 1), expected 0xff8080ff. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.10000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:11864: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {6.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 19. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:11864: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 5.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 20. d3d11.c:11864: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {7.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 22. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:10764: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:14725: Test failed: Got 0x800000ff, expected 0x45454545 at (0, 0, 0), sub-resource 0. d3d11.c:14489: Test failed: Got colour 0x800000ff at (0, 0), expected 0xc1752752. d3d11.c:14489: Test failed: Got colour 0x800000ff at (1, 0), expected 0xc39859a9. d3d11.c:14489: Test failed: Got colour 0x800000ff at (2, 0), expected 0xff79c08e. d3d11.c:14489: Test failed: Got colour 0x800000ff at (3, 0), expected 0xff63bf6c. d3d11.c:14489: Test failed: Got colour 0x800000ff at (0, 1), expected 0xbf7d2756. d3d11.c:14489: Test failed: Got colour 0x800000ff at (1, 1), expected 0xb89f3d40. d3d11.c:14489: Test failed: Got colour 0x800000ff at (2, 1), expected 0xffda3a77. d3d11.c:14489: Test failed: Got colour 0x800000ff at (3, 1), expected 0xffd08099. d3d11.c:14489: Test failed: Got colour 0x800000ff at (0, 2), expected 0x415f1f37. d3d11.c:14489: Test failed: Got colour 0x800000ff at (1, 2), expected 0x43671d3f. d3d11.c:14489: Test failed: Got colour 0x800000ff at (2, 2), expected 0xffc64758. d3d11.c:14489: Test failed: Got colour 0x800000ff at (3, 2), expected 0xff57a194. d3d11.c:14489: Test failed: Got colour 0x800000ff at (0, 3), expected 0x405a2032. d3d11.c:14489: Test failed: Got colour 0x800000ff at (1, 3), expected 0x39422619. d3d11.c:14489: Test failed: Got colour 0x800000ff at (2, 3), expected 0xff749b76. d3d11.c:14489: Test failed: Got colour 0x800000ff at (3, 3), expected 0xffabb879. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:15095: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10777: Test failed: Got 0.00000000e+000, expected 2.00000003e-001 at (0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 18: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:14788: Test failed: Got 0x800000ff, expected 0x00000000 at (0, 0, 0), sub-resource 0. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 1. d3d11.c:15099: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:11151: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (100, 100), sub-resource 0. d3d11.c:10746: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:14794: Test failed: Got 0x800000ff, expected 0x00000000 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {4.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:11151: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (100, 100), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {5.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:14800: Test failed: Got 0x800000ff, expected 0x00000000 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {6.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:11151: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (100, 100), sub-resource 0. d3d11.c:14812: Test failed: Got colour 0x800000ff at (0, 0), expected 0xff0000ff. d3d11.c:14812: Test failed: Got colour 0x800000ff at (1, 0), expected 0xff00ffff. d3d11.c:14812: Test failed: Got colour 0x800000ff at (2, 0), expected 0xff00ff00. d3d11.c:14812: Test failed: Got colour 0x800000ff at (3, 0), expected 0xffffff00. d3d11.c:14812: Test failed: Got colour 0x800000ff at (0, 1), expected 0xffff0000. d3d11.c:14812: Test failed: Got colour 0x800000ff at (1, 1), expected 0xffff00ff. d3d11.c:14812: Test failed: Got colour 0x800000ff at (2, 1), expected 0xff000000. d3d11.c:14812: Test failed: Got colour 0x800000ff at (3, 1), expected 0xff7f7f7f. d3d11.c:14812: Test failed: Got colour 0x800000ff at (0, 2), expected 0xffffffff. d3d11.c:14812: Test failed: Got colour 0x800000ff at (1, 2), expected 0xffffffff. d3d11.c:14812: Test failed: Got colour 0x800000ff at (2, 2), expected 0xffffffff. d3d11.c:14812: Test failed: Got colour 0x800000ff at (3, 2), expected 0xff000000. d3d11.c:14812: Test failed: Got colour 0x800000ff at (0, 3), expected 0xffffffff. d3d11.c:14812: Test failed: Got colour 0x800000ff at (1, 3), expected 0xff000000. d3d11.c:14812: Test failed: Got colour 0x800000ff at (2, 3), expected 0xff000000. d3d11.c:14812: Test failed: Got colour 0x800000ff at (3, 3), expected 0xff000000. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {8.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 2. d3d11.c:10772: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:11151: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (100, 100), sub-resource 0. d3d11.c:11151: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (100, 100), sub-resource 0. d3d11.c:10810: Test failed: Got 0.00000000e+000, expected 1.00000000e+002 at (0, 0), sub-resource 0. d3d11.c:11151: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (100, 100), sub-resource 0. d3d11.c:11151: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (100, 100), sub-resource 0. d3d11.c:10815: Test failed: Got 0.00000000e+000, expected 2.55000000e+002 at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.30000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 3. d3d11.c:11151: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (100, 100), sub-resource 0. d3d11.c:10824: Test failed: Got 0.00000000e+000, expected 3.29999995e+000 at (0, 0), sub-resource 0. d3d11.c:16025: Test failed: Got unexpected colour 0x00000000. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.40000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:10829: Test failed: Got 0.00000000e+000, expected 4.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.50000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:16041: Test failed: Got unexpected colour 0x00000000. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.60000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:17406: Test failed: Got 0xffffffff, expected 0xff000000 at (0, 0, 0), sub-resource 0. d3d11.c:11151: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (100, 100), sub-resource 0. d3d11.c:11151: Test failed: Got 5.00000000e-001, expected 0.00000000e+000 at (100, 100), sub-resource 0. d3d11.c:10746: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:17043: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.70000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:17044: Test failed: Got 5.00000000e-001, expected 4.00000006e-001 at (0, 0), sub-resource 0. d3d11.c:11151: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (100, 100), sub-resource 0. d3d11.c:17258: Test failed: Got 0x00000000, expected 0x000001f4 at (0, 0, 0), sub-resource 0. d3d11.c:17406: Test failed: Got 0xffffffff, expected 0x00ff0000 at (0, 0, 0), sub-resource 0. d3d11.c:17524: Test failed: Got 0xffffffff, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:17136: Test failed: Got 1.00000000e+000, expected 0.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:11151: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (100, 100), sub-resource 0. d3d11.c:17406: Test failed: Got 0xffffffff, expected 0x0000ff00 at (0, 0, 0), sub-resource 0. d3d11.c:17524: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:17406: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:11151: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (100, 100), sub-resource 0. d3d11.c:17140: Test failed: Got 1.00000000e+000, expected 6.99999988e-001 at (0, 0), sub-resource 0. d3d11.c:17524: Test failed: Got 0xffffffff, expected 0xffff0000 at (0, 0, 0), sub-resource 0. d3d11.c:17850: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:18160: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.00000000e+001, 8.00000000e+000, 7.00000000e+000, 3.00000000e+000} at (0, 0), sub-resource 0. d3d11.c:10772: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:17406: Test failed: Got 0xffffffff, expected 0x00ffff00 at (0, 0, 0), sub-resource 0. d3d11.c:17524: Test failed: Got 0xffffffff, expected 0xff0f0f0f at (0, 0, 0), sub-resource 0. d3d11.c:17144: Test failed: Got 1.00000000e+000, expected 6.99999988e-001 at (0, 0), sub-resource 0. d3d11.c:18255: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:17406: Test failed: Got 0xffffffff, expected 0xffffff00 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:17148: Test failed: Got 1.00000000e+000, expected 5.00000000e-001 at (0, 0), sub-resource 0. d3d11.c:17406: Test failed: Got 0xffffffff, expected 0x000000ff at (0, 0, 0), sub-resource 0. d3d11.c:18260: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10777: Test failed: Got 0.00000000e+000, expected 2.00000003e-001 at (0, 0), sub-resource 0. d3d11.c:18160: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {3.00000000e+000, 5.00000000e+000, 1.00000000e+000, 2.00000000e+000} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:17406: Test failed: Got 0xffffffff, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18255: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:18560: Test failed: Got 0xffffffff, expected 0xff007f00 at (0, 0, 0), sub-resource 0. d3d11.c:17406: Test failed: Got 0xffffffff, expected 0x00ff00ff at (0, 0, 0), sub-resource 0. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18260: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:18816: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000c0de, 0x0000ffff, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:18820: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000bbbb, 0x0000cccc, 0x0000dddd} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {4.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18565: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:18824: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000c0de, 0x0000ffff, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:18260: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {5.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18255: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:18828: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000bbbb, 0x0000cccc, 0x0000dddd} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {6.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:19632: Test failed: Got 0x00000000, expected 0xffff0000 at (0, 0, 0), sub-resource 0. d3d11.c:18565: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:20209: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0xffc00000, 0x7f800000, 0xff800000, 0x3f800000} at (0, 0), sub-resource 0. d3d11.c:18260: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {7.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18832: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000c0de, 0x0000ffff, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:18255: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {8.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {9.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18260: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:18820: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000c0de, 0x0000ffff, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (0, 0), expected 0.00000000e+000. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (1, 0), expected 6.25000000e-002. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (2, 0), expected 1.25000000e-001. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (3, 0), expected 1.87500000e-001. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (0, 1), expected 2.50000000e-001. d3d11.c:18565: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (1, 1), expected 3.12500000e-001. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (2, 1), expected 3.75000000e-001. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (3, 1), expected 4.37500000e-001. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (0, 2), expected 5.00000000e-001. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (1, 2), expected 5.62500000e-001. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (2, 2), expected 6.25000000e-001. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (3, 2), expected 6.87500000e-001. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (0, 3), expected 7.50000000e-001. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (1, 3), expected 8.12500000e-001. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (2, 3), expected 8.75000000e-001. d3d11.c:17172: Test failed: Got unexpected depth 1.00000000e+000 at (3, 3), expected 9.37500000e-001. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 1. d3d11.c:18824: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000bbbb, 0x0000cccc, 0x0000dddd} at (0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000001, 0x00000001, 0x00000001, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:18255: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:6086: Test failed: Got unexpected query result 0x0000000000000000. d3d11.c:20931: Test failed: Got 0xff0000ff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x7fffffff, 0x7fffffff, 0x7fffffff, 0x7fffffff} at (0, 0), sub-resource 0. d3d11.c:18828: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000c0de, 0x0000ffff, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:21064: Test failed: Got 0xcc0000ff, expected 0xe2007fcc at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x80000000, 0x80000000, 0x80000000, 0x80000000} at (0, 0), sub-resource 0. d3d11.c:18255: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:20939: Test failed: Got 0xff00ff00, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:21068: Test failed: Got 0x8000ff00, expected 0xe2007fcc at (0, 0, 0), sub-resource 0. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 3. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18836: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000c0de, 0x0000ffff, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:21075: Test failed: Got 0xcc0000ff, expected 0x7f00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x80000000, 0x80000000, 0x80000000, 0x80000000} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x7fffffff, 0x7fffffff, 0x7fffffff, 0x7fffffff} at (0, 0), sub-resource 0. d3d11.c:21079: Test failed: Got 0x8000ff00, expected 0xcc0000ff at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000001, 0x00000001, 0x00000001, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:21098: Test failed: Got 0xcc0000ff, expected 0x7f00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {4.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000002, 0x00000002, 0x00000002, 0x00000002} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {5.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:21102: Test failed: Got 0x8000ff00, expected 0xcc0000ff at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00ff00ff, 0x00ff00ff, 0x00ff00ff, 0x00ff00ff} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {6.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:20964: Test failed: Got 0xff00ff00, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {7.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:20969: Test failed: Got 0xff0000ff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:18832: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000bbbb, 0x0000cccc, 0x0000dddd} at (0, 0), sub-resource 0. d3d11.c:20964: Test failed: Got 0xff0000ff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {8.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18836: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000c0de, 0x0000ffff, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000001, 0x00000001, 0x00000001, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {9.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:20969: Test failed: Got 0xff00ff00, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000002, 0x00000002, 0x00000002, 0x00000002} at (0, 0), sub-resource 0. d3d11.c:18820: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000bbbb, 0x0000ffff, 0x0000dddd} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.10000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:20964: Test failed: Got 0xff0000ff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.20000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18824: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000c0de, 0x0000cccc, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:18828: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000bbbb, 0x0000ffff, 0x0000dddd} at (0, 0), sub-resource 0. d3d11.c:21399: Test failed: Feature level 0x9300: Got 0x00000000, expected 0x7f0000ff at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000001, 0x00000001, 0x00000001, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:20969: Test failed: Got 0xff00ff00, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000002, 0x00000002, 0x00000002, 0x00000002} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.40000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18832: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000c0de, 0x0000cccc, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:20964: Test failed: Got 0xff00ff00, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000001, 0x00000001, 0x00000001, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.60000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000002, 0x00000002, 0x00000002, 0x00000002} at (0, 0), sub-resource 0. d3d11.c:18816: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000c0de, 0x0000ffff, 0x0000dddd} at (0, 0), sub-resource 0. d3d11.c:20969: Test failed: Got 0xff0000ff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.70000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.80000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18820: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000bbbb, 0x0000cccc, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x7fffffff, 0x7fffffff, 0x7fffffff, 0x7fffffff} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.90000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:20990: Test failed: Got 0xffff0000, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:21399: Test failed: Feature level 0x9200: Got 0x00000000, expected 0x7f0000ff at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x80000000, 0x80000000, 0x80000000, 0x80000000} at (0, 0), sub-resource 0. d3d11.c:20995: Test failed: Got 0xff00ff00, expected 0xffff0000 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.00000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.10000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18832: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000c0de, 0x0000ffff, 0x0000dddd} at (0, 0), sub-resource 0. d3d11.c:21011: Test failed: Got 0xff00ff00, expected 0xffff0000 at (0, 0, 0), sub-resource 0. d3d11.c:21017: Test failed: Got 0xffff0000, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x7fffffff, 0x7fffffff, 0x7fffffff, 0x7fffffff} at (0, 0), sub-resource 0. d3d11.c:18836: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000bbbb, 0x0000cccc, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.20000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:21654: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21656: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21658: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21660: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21662: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21410: Test failed: Feature level 0x9200: Got 0x00000000, expected 0xffffff00 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.30000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:21671: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21673: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21675: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21677: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21679: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:18816: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000c0de, 0x0000ffff, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:21654: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21656: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21658: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21660: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21662: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21783: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:21410: Test failed: Feature level 0x9100: Got 0x00000000, expected 0xffffff00 at (0, 0, 0), sub-resource 0. d3d11.c:21671: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21673: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21675: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21677: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21679: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21866: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:18828: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000bbbb, 0x0000cccc, 0x0000dddd} at (0, 0), sub-resource 0. d3d11.c:21873: Test failed: Got 0xffffffff, expected 0x00000000 at (0, 0, 0), sub-resource 0. d3d11.c:21671: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21673: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21675: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21677: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:21679: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:18832: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000c0de, 0x0000ffff, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 63: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 63: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 63: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:21964: Test failed: Got 0xff00ff00, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:22335: Test failed: Test 0: Got 0x3f800000, expected 0x3f000000 at (0, 0). d3d11.c:22335: Test failed: Test 0: Got 0x3f800000, expected 0x3e800000 at (1, 0). d3d11.c:22335: Test failed: Test 0: Got 0x3f800000, expected 0x00000000 at (3, 0). d3d11.c:22335: Test failed: Test 0: Got 0x3f800000, expected 0xbf800000 at (0, 1). d3d11.c:22335: Test failed: Test 0: Got 0x3f800000, expected 0xc0000000 at (1, 1). d3d11.c:22335: Test failed: Test 0: Got 0x3f800000, expected 0xc0400000 at (2, 1). d3d11.c:22335: Test failed: Test 0: Got 0x3f800000, expected 0xc0800000 at (3, 1). d3d11.c:22335: Test failed: Test 0: Got 0x3f800000, expected 0xbf000000 at (0, 2). d3d11.c:22335: Test failed: Test 0: Got 0x3f800000, expected 0xbe800000 at (1, 2). d3d11.c:22335: Test failed: Test 0: Got 0x3f800000, expected 0xbf800000 at (2, 2). d3d11.c:22335: Test failed: Test 0: Got 0x3f800000, expected 0x80000000 at (3, 2). d3d11.c:22335: Test failed: Test 0: Got 0x3f800000, expected 0x40000000 at (1, 3). d3d11.c:22335: Test failed: Test 0: Got 0x3f800000, expected 0x40400000 at (2, 3). d3d11.c:22335: Test failed: Test 0: Got 0x3f800000, expected 0x40800000 at (3, 3). d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0xfffffffa, 0xfffffffa, 0xfffffffa, 0xfffffffa} at (0, 0), sub-resource 0. d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x00000000 at (0, 0). d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x00000010 at (1, 0). d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x00000020 at (2, 0). d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x00000030 at (3, 0). d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x00000040 at (0, 1). d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x00000050 at (1, 1). d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x00000060 at (2, 1). d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x00000070 at (3, 1). d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x00000080 at (0, 2). d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x00000090 at (1, 2). d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x000000a0 at (2, 2). d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x000000b0 at (3, 2). d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x000000c0 at (0, 3). d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x000000d0 at (1, 3). d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x000000e0 at (2, 3). d3d11.c:22335: Test failed: Test 1: Got 0x3f800000, expected 0x000000f0 at (3, 3). d3d11.c:23225: Test failed: Test 0: Got 0xffff (65535), expected 0x1 (1) for 'atomic_and' with inputs (1, 0), (-1), 0xffff (65535). d3d11.c:23225: Test failed: Test 0: Got 0 (0), expected 0x1 (1) for 'atomic_cmp_store' with inputs (1, 0), (-1), 0 (0). d3d11.c:23225: Test failed: Test 0: Got 0x1 (1), expected 0x2 (2) for 'atomic_iadd' with inputs (1, 0), (-1), 0x1 (1). d3d11.c:23225: Test failed: Test 0: Got 0 (0), expected 0x1 (1) for 'atomic_or' with inputs (1, 0), (-1), 0 (0). d3d11.c:23225: Test failed: Test 0: Got 0 (0), expected 0x1 (1) for 'atomic_umax' with inputs (1, 0), (-1), 0 (0). d3d11.c:23225: Test failed: Test 0: Got 0xff (255), expected 0xfe (254) for 'atomic_xor' with inputs (1, 0), (-1), 0xff (255). d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0xfffffffc, 0xfffffffc, 0xfffffffc, 0xfffffffc} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:23331: Test failed: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:18816: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000bbbb, 0x0000ffff, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0xffffffff at (0, 0). d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0x00000010 at (1, 0). d3d11.c:23336: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0x00000020 at (2, 0). d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0x00000030 at (3, 0). d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0x00000040 at (0, 1). d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0x00000050 at (1, 1). d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0x00000060 at (2, 1). d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0xfffffcf7 at (3, 1). d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0xfffffd66 at (0, 2). d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0x00000090 at (1, 2). d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0xfffffdd5 at (2, 2). d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0x000000b0 at (3, 2). d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0x000000c0 at (0, 3). d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0x000000d0 at (1, 3). d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0x000000e0 at (2, 3). d3d11.c:22335: Test failed: Test 2: Got 0x3f800000, expected 0xffffff9b at (3, 3). d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x00000000 at (0, 0). d3d11.c:23341: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x00000010 at (1, 0). d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x00000020 at (2, 0). d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x00000030 at (3, 0). d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x00000040 at (0, 1). d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x00000050 at (1, 1). d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x00000060 at (2, 1). d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x00000070 at (3, 1). d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x00000080 at (0, 2). d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x00000090 at (1, 2). d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x000000a0 at (2, 2). d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x000000b0 at (3, 2). d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x000000c0 at (0, 3). d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x000000d0 at (1, 3). d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x000000e0 at (2, 3). d3d11.c:22335: Test failed: Test 3: Got 0x3f800000, expected 0x000000f0 at (3, 3). d3d11.c:23488: Test failed: Got 0x00000000, expected 0xffffff00 at (0, 0, 0), sub-resource 0. d3d11.c:18824: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000bbbb, 0x0000ffff, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:23492: Test failed: Got 0x00000000, expected 0xff0000ff at (400, 0, 0), sub-resource 0. d3d11.c:23225: Test failed: Test 1: Got 0x1 (1), expected 0 (0) for 'atomic_iadd' with inputs (4294967295, 4294967295), (0), 0x1 (1). d3d11.c:23225: Test failed: Test 1: Got 0 (0), expected 0xffffffff (-1) for 'atomic_or' with inputs (4294967295, 4294967295), (0), 0 (0). d3d11.c:23225: Test failed: Test 1: Got 0 (0), expected 0xffffffff (-1) for 'atomic_umax' with inputs (4294967295, 4294967295), (0), 0 (0). d3d11.c:23225: Test failed: Test 1: Got 0xffffffff (-1), expected 0 (0) for 'atomic_xor' with inputs (4294967295, 4294967295), (0), 0xffffffff (-1). d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000001, 0x00000001, 0x00000001, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:23346: Test failed: Got 0x00000000, expected 0xffff0000 at (0, 0, 0), sub-resource 0. d3d11.c:23488: Test failed: Got 0x00000000, expected 0xffffff00 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000ffff at (0, 0). d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000ffff at (1, 0). d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000ffff at (2, 0). d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000ffff at (3, 0). d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000ffff at (0, 1). d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000c000 at (1, 1). d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000c000 at (2, 1). d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000ffff at (3, 1). d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000ffff at (0, 2). d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000c000 at (1, 2). d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000c000 at (2, 2). d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000ffff at (3, 2). d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000ffff at (0, 3). d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000ffff at (1, 3). d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000ffff at (2, 3). d3d11.c:22335: Test failed: Test 4: Got 0x3f800000, expected 0x0000ffff at (3, 3). d3d11.c:18828: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000c0de, 0x0000cccc, 0x0000dddd} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {4.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000aa at (0, 0). d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000aa at (1, 0). d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000cc at (2, 0). d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000cc at (3, 0). d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000aa at (0, 1). d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000aa at (1, 1). d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000dd at (2, 1). d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000dd at (3, 1). d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000bb at (0, 2). d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000bb at (1, 2). d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000ee at (2, 2). d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000ee at (3, 2). d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000bb at (0, 3). d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000bb at (1, 3). d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000ff at (2, 3). d3d11.c:22335: Test failed: Test 5: Got 0x3f800000, expected 0x000000ff at (3, 3). d3d11.c:22995: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:23351: Test failed: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {5.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:23492: Test failed: Got 0x00000000, expected 0xff0000ff at (400, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {6.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000ffff at (0, 0). d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000ffff at (1, 0). d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000ffff at (2, 0). d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000ffff at (3, 0). d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000ffff at (0, 1). d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000c000 at (1, 1). d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000c000 at (2, 1). d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000ffff at (3, 1). d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000ffff at (0, 2). d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000c000 at (1, 2). d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000c000 at (2, 2). d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000ffff at (3, 2). d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000ffff at (0, 3). d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000ffff at (1, 3). d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000ffff at (2, 3). d3d11.c:22335: Test failed: Test 6: Got 0x3f800000, expected 0x0000ffff at (3, 3). d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000064, 0x00000064, 0x00000064, 0x00000064} at (0, 0), sub-resource 0. d3d11.c:18816: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000c0de, 0x0000cccc, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000aa at (0, 0). d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000aa at (1, 0). d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000cc at (2, 0). d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000cc at (3, 0). d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000aa at (0, 1). d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000aa at (1, 1). d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000dd at (2, 1). d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000dd at (3, 1). d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000bb at (0, 2). d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000bb at (1, 2). d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000ee at (2, 2). d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000ee at (3, 2). d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000bb at (0, 3). d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000bb at (1, 3). d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000ff at (2, 3). d3d11.c:22335: Test failed: Test 7: Got 0x3f800000, expected 0x000000ff at (3, 3). d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {7.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:23006: Test failed: Got 0.00000000e+000, expected 2.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xff0000ff at (0, 0). d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xff00ffff at (1, 0). d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xff00ff00 at (2, 0). d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xffffff00 at (3, 0). d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xffff0000 at (0, 1). d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xffff00ff at (1, 1). d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xff000000 at (2, 1). d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xff7f7f7f at (3, 1). d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xffffffff at (0, 2). d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xffffffff at (1, 2). d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xffffffff at (2, 2). d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xff000000 at (3, 2). d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xffffffff at (0, 3). d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xff000000 at (1, 3). d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xff000000 at (2, 3). d3d11.c:24753: Test failed: Test 0: Got 0x800000ff, expected 0xff000000 at (3, 3). d3d11.c:18820: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000bbbb, 0x0000ffff, 0x0000dddd} at (0, 0), sub-resource 0. d3d11.c:24332: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000004, 0x00000004, 0x00000004, 0x00000004} at (0, 0), sub-resource 0. d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000aa at (0, 0). d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000aa at (1, 0). d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000cc at (2, 0). d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000cc at (3, 0). d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000aa at (0, 1). d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000aa at (1, 1). d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000dd at (2, 1). d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000dd at (3, 1). d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000bb at (0, 2). d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000bb at (1, 2). d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000ee at (2, 2). d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000ee at (3, 2). d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000bb at (0, 3). d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000bb at (1, 3). d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000ff at (2, 3). d3d11.c:22335: Test failed: Test 8: Got 0x3f800000, expected 0x000000ff at (3, 3). d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {8.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000100, 0x00000100, 0x00000100, 0x00000100} at (0, 0), sub-resource 0. d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xff0000ff at (0, 0). d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xff00ffff at (1, 0). d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xff00ff00 at (2, 0). d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xffffff00 at (3, 0). d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xffff0000 at (0, 1). d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xffff00ff at (1, 1). d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xff000000 at (2, 1). d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xff7f7f7f at (3, 1). d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xffffffff at (0, 2). d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xffffffff at (1, 2). d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xffffffff at (2, 2). d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xff000000 at (3, 2). d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xffffffff at (0, 3). d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xff000000 at (1, 3). d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xff000000 at (2, 3). d3d11.c:24753: Test failed: Test 1: Got 0x800000ff, expected 0xff000000 at (3, 3). d3d11.c:23014: Test failed: Got 0.00000000e+000, expected 2.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {9.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18824: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000c0de, 0x0000cccc, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:24909: Test failed: Feature level 0xb000: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xff0000ff at (0, 0). d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xff0000ff at (1, 0). d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000064, 0x00000064, 0x00000064, 0x00000064} at (0, 0), sub-resource 0. d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xff00ffff at (2, 0). d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xff00ffff at (3, 0). d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xff0000ff at (0, 1). d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xff0000ff at (1, 1). d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xff00ffff at (2, 1). d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xff00ffff at (3, 1). d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xff00ff00 at (0, 2). d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xff00ff00 at (1, 2). d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xffffff00 at (2, 2). d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xffffff00 at (3, 2). d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xff00ff00 at (0, 3). d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xff00ff00 at (1, 3). d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xffffff00 at (2, 3). d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:24753: Test failed: Test 2: Got 0x800000ff, expected 0xffffff00 at (3, 3). d3d11.c:24909: Test failed: Feature level 0xa100: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:24915: Test failed: Feature level 0xb000: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:23017: Test failed: Got 0.00000000e+000, expected 4.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:24909: Test failed: Feature level 0xa000: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (0, 0). d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (1, 0). d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (2, 0). d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (3, 0). d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (0, 1). d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (1, 1). d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (2, 1). d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (3, 1). d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (0, 2). d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (1, 2). d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (2, 2). d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (3, 2). d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (0, 3). d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (1, 3). d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (2, 3). d3d11.c:24753: Test failed: Test 3: Got 0x800000ff, expected 0xff0000ff at (3, 3). d3d11.c:24915: Test failed: Feature level 0xa000: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:24921: Test failed: Feature level 0xb000: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000010, 0x00000010, 0x00000010, 0x00000010} at (0, 0), sub-resource 0. d3d11.c:24915: Test failed: Feature level 0xa100: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.10000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:24927: Test failed: Feature level 0xb000: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:18832: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000c0de, 0x0000cccc, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:24921: Test failed: Feature level 0xa000: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:24921: Test failed: Feature level 0xa100: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xffffffff at (0, 0). d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xffffffff at (1, 0). d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xff0000ff at (2, 0). d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xff0000ff at (3, 0). d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xffffffff at (0, 1). d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xffffffff at (1, 1). d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xff0000ff at (2, 1). d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xff0000ff at (3, 1). d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xff000000 at (0, 2). d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xff000000 at (1, 2). d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xff00ff00 at (2, 2). d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xff00ff00 at (3, 2). d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xff000000 at (0, 3). d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xff000000 at (1, 3). d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xff00ff00 at (2, 3). d3d11.c:24753: Test failed: Test 4: Got 0x800000ff, expected 0xff00ff00 at (3, 3). d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.20000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000005, 0x00000014, 0x00000000, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:26099: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.30000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000002, 0x00000014, 0x00000000, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 74: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000de at (0, 0). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000de at (1, 0). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ad at (2, 0). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ad at (3, 0). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000de at (0, 1). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000de at (1, 1). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ad at (2, 1). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ad at (3, 1). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ba at (0, 2). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ba at (1, 2). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000be at (2, 2). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000be at (3, 2). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ba at (0, 3). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000ba at (1, 3). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000be at (2, 3). d3d11.c:24753: Test failed: Test 5: Got 0x800000ff, expected 0xff0000be at (3, 3). d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00003fff, 0x00003fff, 0x00003fff, 0x00003fff} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.40000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000002, 0x00000020, 0x00000000, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:18816: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000c0de, 0x0000ffff, 0x0000dddd} at (0, 0), sub-resource 0. d3d11.c:26400: Test failed: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0xfffffffe, 0xfffffffe, 0xfffffffe, 0xfffffffe} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.50000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000de at (0, 0). d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000de at (1, 0). d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ad at (2, 0). d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ad at (3, 0). d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000de at (0, 1). d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000de at (1, 1). d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ad at (2, 1). d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ad at (3, 1). d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ba at (0, 2). d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ba at (1, 2). d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000be at (2, 2). d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000be at (3, 2). d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ba at (0, 3). d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ba at (1, 3). d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000be at (2, 3). d3d11.c:24753: Test failed: Test 6: Got 0x800000ff, expected 0xff0000be at (3, 3). d3d11.c:26426: Test failed: Got 0xff00ff00, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.60000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18820: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000bbbb, 0x0000cccc, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000005, 0x00000004, 0x00000000, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:18828: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000bbbb, 0x0000cccc, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.70000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00007fff, 0x00007fff, 0x00007fff, 0x00007fff} at (0, 0), sub-resource 0. d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000002, 0x00000004, 0x00000000, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xffffffff at (0, 0). d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xffffffff at (1, 0). d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xff0000ff at (2, 0). d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xff0000ff at (3, 0). d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xffffffff at (0, 1). d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xffffffff at (1, 1). d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xff0000ff at (2, 1). d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xff0000ff at (3, 1). d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xff000000 at (0, 2). d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xff000000 at (1, 2). d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xff00ff00 at (2, 2). d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xff00ff00 at (3, 2). d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xff000000 at (0, 3). d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xff000000 at (1, 3). d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xff00ff00 at (2, 3). d3d11.c:24753: Test failed: Test 7: Got 0x800000ff, expected 0xff00ff00 at (3, 3). d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.80000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18832: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000c0de, 0x0000ffff, 0x0000dddd} at (0, 0), sub-resource 0. d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000002, 0x00000004, 0x00000000, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:26457: Test failed: Got 0xff00ff00, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.90000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:18836: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000bbbb, 0x0000cccc, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:26463: Test failed: Got 0xff00ff00, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xffffffff at (0, 0). d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xffffffff at (1, 0). d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xff0000ff at (2, 0). d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xff0000ff at (3, 0). d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xffffffff at (0, 1). d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xffffffff at (1, 1). d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xff0000ff at (2, 1). d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xff0000ff at (3, 1). d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xff000000 at (0, 2). d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xff000000 at (1, 2). d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xff00ff00 at (2, 2). d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xff00ff00 at (3, 2). d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xff000000 at (0, 3). d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xff000000 at (1, 3). d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xff00ff00 at (2, 3). d3d11.c:24753: Test failed: Test 8: Got 0x800000ff, expected 0xff00ff00 at (3, 3). d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000032, 0x00000032, 0x00000032, 0x00000032} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.00000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000001, 0x00000001, 0x00000001, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:28335: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000}. d3d11.c:28335: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000}. d3d11.c:28335: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000}. d3d11.c:28335: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000}. d3d11.c:28335: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 0.00000000e+000}. d3d11.c:28335: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.00000000e+000, 0.00000000e+000, 1.00000000e+000, 1.00000000e+000}. d3d11.c:28335: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 1.00000000e+000, 1.00000000e+000}. d3d11.c:28335: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 1.00000000e+000, 1.00000000e+000}. d3d11.c:28335: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 1.00000000e+000, 1.00000000e+000}. d3d11.c:28335: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000}. d3d11.c:28335: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000}. d3d11.c:28335: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000}. d3d11.c:28335: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}. d3d11.c:28335: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}. d3d11.c:28335: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 1.00000000e+000, 1.00000000e+000, 0.00000000e+000}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {4.00000000e+000, 5.00000000e+000, 1.00000000e+000, 0.00000000e+000}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {5.00000000e+000, 6.00000000e+000, 2.00000000e+000, 1.00000000e+000}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {6.00000000e+000, 7.00000000e+000, 3.00000000e+000, 2.00000000e+000}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {7.00000000e+000, 7.00000000e+000, 3.00000000e+000, 3.00000000e+000}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {8.00000000e+000, 9.00000000e+000, 5.00000000e+000, 4.00000000e+000}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {9.00000000e+000, 5.00000000e-001, 6.00000000e+000, 5.00000000e+000}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {5.00000000e-001, 1.50000000e+000, 7.00000000e+000, 6.00000000e+000}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.50000000e+000, 1.50000000e+000, 7.00000000e+000, 7.00000000e+000}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {2.50000000e+000, 3.50000000e+000, 9.00000000e+000, 8.00000000e+000}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {3.50000000e+000, 4.50000000e+000, 5.00000000e-001, 9.00000000e+000}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {4.50000000e+000, 5.50000000e+000, 1.50000000e+000, 5.00000000e-001}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {5.50000000e+000, 5.50000000e+000, 1.50000000e+000, 1.50000000e+000}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {2.50000000e+000, 3.50000000e+000, 3.50000000e+000, 2.50000000e+000}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {3.50000000e+000, 4.50000000e+000, 4.50000000e+000, 3.50000000e+000}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {4.50000000e+000, 5.50000000e+000, 5.50000000e+000, 4.50000000e+000}. d3d11.c:28047: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {5.50000000e+000, 5.50000000e+000, 5.50000000e+000, 5.50000000e+000}. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.10000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000032, 0x00000032, 0x00000032, 0x00000032} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.20000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (0, 0). d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (1, 0). d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (2, 0). d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (3, 0). d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (0, 1). d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (1, 1). d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (2, 1). d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (3, 1). d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (0, 2). d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (1, 2). d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (2, 2). d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (3, 2). d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (0, 3). d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (1, 3). d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (2, 3). d3d11.c:24753: Test failed: Test 10: Got 0x800000ff, expected 0x00000000 at (3, 3). d3d11.c:28356: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.00000000e+000, 0.00000000e+000, 1.00000000e+000, 1.00000000e+000}. d3d11.c:27329: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:28356: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 1.00000000e+000, 1.00000000e+000}. d3d11.c:28356: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 1.00000000e+000, 1.00000000e+000}. d3d11.c:28356: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 1.00000000e+000, 1.00000000e+000}. d3d11.c:28356: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000}. d3d11.c:28356: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000}. d3d11.c:28356: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000}. d3d11.c:28356: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}. d3d11.c:28356: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 1.00000000e+000, 1.00000000e+000, 0.00000000e+000}. d3d11.c:28356: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}. d3d11.c:28356: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {0.00000000e+000, 1.00000000e+000, 1.00000000e+000, 0.00000000e+000}. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.30000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 80: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000001, 0x00000001, 0x00000001, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.40000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 81: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000000f, 0x007fffff, 0x0000007f, 0x3fffffff} at (0, 0), sub-resource 0. d3d11.c:27334: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {9.00000000e+000, 5.00000000e-001, 6.00000000e+000, 5.00000000e+000}. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {5.00000000e-001, 1.50000000e+000, 7.00000000e+000, 6.00000000e+000}. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.50000000e+000, 1.50000000e+000, 7.00000000e+000, 7.00000000e+000}. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.50000000e+000, 1.50000000e+000, 7.00000000e+000, 7.00000000e+000}. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {3.50000000e+000, 4.50000000e+000, 5.00000000e-001, 9.00000000e+000}. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {4.50000000e+000, 5.50000000e+000, 1.50000000e+000, 5.00000000e-001}. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {5.50000000e+000, 5.50000000e+000, 1.50000000e+000, 1.50000000e+000}. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {5.50000000e+000, 5.50000000e+000, 1.50000000e+000, 1.50000000e+000}. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {3.50000000e+000, 4.50000000e+000, 4.50000000e+000, 3.50000000e+000}. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {4.50000000e+000, 5.50000000e+000, 5.50000000e+000, 4.50000000e+000}. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {5.50000000e+000, 5.50000000e+000, 5.50000000e+000, 5.50000000e+000}. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {5.50000000e+000, 5.50000000e+000, 5.50000000e+000, 5.50000000e+000}. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {3.50000000e+000, 4.50000000e+000, 4.50000000e+000, 3.50000000e+000}. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {4.50000000e+000, 5.50000000e+000, 5.50000000e+000, 4.50000000e+000}. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {5.50000000e+000, 5.50000000e+000, 5.50000000e+000, 5.50000000e+000}. d3d11.c:28117: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {5.50000000e+000, 5.50000000e+000, 5.50000000e+000, 5.50000000e+000}. d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000032, 0x00000032, 0x00000032, 0x00000032} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.50000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:27338: Test failed: Got 0xffffffff, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:28825: Test failed: Got fragcoord {1.00000000e+000, 1.00000000e+000}, expected {5.00000000e-001, 5.00000000e-001} at (0, 0), offset 5.00000000e-001. d3d11.c:27343: Test failed: Got 0xffffffff, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000000, 0x007f0000, 0x00000000, 0x3f800000} at (0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.60000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000032, 0x00000032, 0x00000032, 0x00000032} at (0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000000, 0x0000ff00, 0x00000000, 0x007f8000} at (0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 83: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:27347: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.70000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000002, 0x00000002, 0x00000002, 0x00000002} at (0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000000f, 0x00000000, 0x0000007f, 0x0000007f} at (0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 84: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:28862: Test failed: Feature level 0xb000: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.80000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 85: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:28987: Test failed: Got 0x00000000, expected 0x000000c8 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {2.90000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 86: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:29152: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:28867: Test failed: Feature level 0xb000: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.00000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000000, 0x00400000, 0x00000001, 0x20000001} at (0, 0), sub-resource 0. d3d11.c:29153: Test failed: Got 5.00000000e-001, expected 6.99999988e-001 at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.10000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:28879: Test failed: Feature level 0xb000: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 87: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.20000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:28995: Test failed: Got 0x00000000, expected 0x0000012c at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000000f, 0x0000000f, 0x0000000f, 0x0000000f} at (0, 0), sub-resource 0. d3d11.c:28888: Test failed: Feature level 0xb000: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.30000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:28999: Test failed: Got 0x00000000, expected 0x00000190 at (0, 0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 88: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x007fffff, 0x007fffff, 0x007fffff, 0x007fffff} at (0, 0), sub-resource 0. d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.40000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:30040: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x3fffffff, 0x3fffffff, 0x3fffffff, 0x3fffffff} at (0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 89: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:10480: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {3.50000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00007fff, 0x00007fff, 0x00007fff, 0x00007fff} at (0, 0), sub-resource 0. d3d11.c:29152: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:29606: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:29153: Test failed: Got 5.00000000e-001, expected 6.99999988e-001 at (0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 90: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:30975: Test failed: Got 0xffffffff, expected 0x00000000 at (0, 0, 0), sub-resource 0. d3d11.c:29613: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00007ffe, 0x00007ffe, 0x00007ffe, 0x00007ffe} at (0, 0), sub-resource 0. d3d11.c:30290: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:29629: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:30975: Test failed: Got 0xffffffff, expected 0x00000000 at (0, 0, 0), sub-resource 0. d3d11.c:29641: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:30794: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:30797: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 200, 1), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000ffff, 0x0000ffff, 0x0000ffff, 0x0000ffff} at (0, 0), sub-resource 0. d3d11.c:30800: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 480, 1), sub-resource 0. d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 91: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:30794: Test failed: Got 0xffffffff, expected 0xbfff0000 at (0, 0, 0), sub-resource 0. d3d11.c:30797: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 200, 1), sub-resource 0. d3d11.c:30800: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 480, 1), sub-resource 0. d3d11.c:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:30794: Test failed: Got 0xffffffff, expected 0x8000ff00 at (0, 0, 0), sub-resource 0. d3d11.c:29152: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:30797: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 200, 1), sub-resource 0. d3d11.c:30800: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 480, 1), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00007fff, 0x00007fff, 0x00007fff, 0x00007fff} at (0, 0), sub-resource 0. d3d11.c:29606: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:30975: Test failed: Got 0xffffffff, expected 0x00000000 at (0, 0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 92: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:30821: Test failed: Got 0xffffffff, expected 0xffff0000 at (0, 0, 0), sub-resource 0. d3d11.c:29153: Test failed: Got 5.00000000e-001, expected 6.00000024e-001 at (0, 0), sub-resource 0. d3d11.c:31150: Test failed: Got {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (16, 0), sub-resource 0. d3d11.c:30824: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 200, 1), sub-resource 0. d3d11.c:30827: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 480, 1), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0001ffff, 0x0001ffff, 0x0001ffff, 0x0001ffff} at (0, 0), sub-resource 0. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xff80ff80 at (0, 0, 0), sub-resource 0. d3d11.c:30975: Test failed: Got 0xffffffff, expected 0x00000000 at (0, 0, 0), sub-resource 0. d3d11.c:31159: Test failed: Got {5.00000000e-001, 5.00000000e-001, 0.00000000e+000, 0.00000000e+000}, expected {0.00000000e+000, 2.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000001, 0x00000001, 0x00000001, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:29613: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 93: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xffbcffbc at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000001, 0x00000001, 0x00000001, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:30874: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:30874: Test failed: Got 0xffffffff, expected 0xbfff0000 at (0, 0, 0), sub-resource 0. d3d11.c:30874: Test failed: Got 0xffffffff, expected 0x8000ff00 at (0, 0, 0), sub-resource 0. d3d11.c:31194: Test failed: Got {5.00000000e-001, 5.00000000e-001, 0.00000000e+000, 0.00000000e+000}, expected {0.00000000e+000, 4.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 0. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xffdfc0a0 at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x1e6a2c48, 0x12345678, 0x1e6a0000, 0x2c480000} at (0, 0), sub-resource 0. d3d11.c:31802: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:31805: Test failed: Test 0: Got unexpected value 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000ffff, 0xffff0000, 0x00000000, 0xffff0000} at (0, 0), sub-resource 0. d3d11.c:31210: Test failed: Got {5.00000000e-001, 5.00000000e-001, 0.00000000e+000, 0.00000000e+000}, expected {0.00000000e+000, 5.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 0. d3d11.c:31824: Test failed: Test 0: Got unexpected value 0. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xfff1e1cf at (0, 0, 0), sub-resource 0. d3d11.c:31952: Test failed: Got 0x00000000, expected 0x7f7f7f7f at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0xffffffff, 0xffffffff, 0xffff0000, 0xffff0000} at (0, 0), sub-resource 0. d3d11.c:31215: Test failed: Got {5.00000000e-001, 5.00000000e-001, 0.00000000e+000, 0.00000000e+000}, expected {1.00000000e+000, 5.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (16, 0), sub-resource 0. d3d11.c:31959: Test failed: Got 0x00000000, expected 0x3f3f3f3f at (0, 0, 0), sub-resource 0. d3d11.c:31805: Test failed: Test 1: Got unexpected value 0. d3d11.c:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xffbcffbc at (0, 0, 0), sub-resource 0. d3d11.c:29613: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:32004: Test failed: Got 1.00000000e+000, expected 5.00000000e-001 at (0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000020, 0x00000000, 0x0000001f, 0xffffffff} at (0, 0), sub-resource 0. d3d11.c:31819: Test failed: Test 1: Got unexpected value 0. d3d11.c:32006: Test failed: Got 1.00000000e+000, expected 5.00000000e-001 at (0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000001f, 0x00000000, 0x0000001e, 0x0000001e} at (0, 0), sub-resource 0. d3d11.c:31802: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:32026: Test failed: Got 1.00000000e+000, expected 6.00000024e-001 at (0, 0), sub-resource 0. d3d11.c:31805: Test failed: Test 2: Got unexpected value 0. d3d11.c:29629: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:32156: Test failed: Got 0x00, expected 0xff at (0, 0, 0), sub-resource 0. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xfff1e1cf at (0, 0, 0), sub-resource 0. d3d11.c:32028: Test failed: Got 1.00000000e+000, expected 5.00000000e-001 at (0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000001, 0x0000001f, 0x0000001f, 0x0000001e} at (0, 0), sub-resource 0. d3d11.c:32030: Test failed: Got 1.00000000e+000, expected 4.00000006e-001 at (0, 0), sub-resource 0. d3d11.c:31824: Test failed: Test 2: Got unexpected value 0. d3d11.c:30320: Test failed: Got unexpected color 0xffffffff. d3d11.c:32162: Test failed: Got 0x00000000, expected 0xff7f4000 at (0, 0, 0), sub-resource 0. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xfff1e1cf at (0, 0, 0), sub-resource 0. d3d11.c:32156: Test failed: Got 0x00, expected 0xff at (0, 0, 0), sub-resource 0. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xff80ff80 at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000002, 0x00000000, 0x0000001f, 0x0000001e} at (0, 0), sub-resource 0. d3d11.c:32162: Test failed: Got 0x00000000, expected 0xff7f4000 at (0, 0, 0), sub-resource 0. d3d11.c:31805: Test failed: Test 3: Got unexpected value 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000008, 0x00000003, 0x0000001f, 0x0000001e} at (0, 0), sub-resource 0. d3d11.c:31824: Test failed: Test 3: Got unexpected value 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000010, 0x00000002, 0x0000001f, 0x0000001d} at (0, 0), sub-resource 0. d3d11.c:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xff80ff80 at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000008, 0x00000000, 0x0000001c, 0x0000001c} at (0, 0), sub-resource 0. d3d11.c:30318: Test failed: Got unexpected color 0xffffffff. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000004, 0x00000000, 0x00000003, 0x00000003} at (0, 0), sub-resource 0. d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (0, 0). d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (1, 0). d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (2, 0). d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (3, 0). d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (0, 1). d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (1, 1). d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (2, 1). d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (3, 1). d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (0, 2). d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (1, 2). d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (2, 2). d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (3, 2). d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (0, 3). d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (1, 3). d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (2, 3). d3d11.c:32557: Test failed: Got unexpected colour 0x00000000 at (3, 3). d3d11.c:31805: Test failed: Test 4: Got unexpected value 0. d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (0, 0). d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (1, 0). d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (2, 0). d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (3, 0). d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (0, 1). d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (1, 1). d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (2, 1). d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (3, 1). d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (0, 2). d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (1, 2). d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (2, 2). d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (3, 2). d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (0, 3). d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (1, 3). d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (2, 3). d3d11.c:32568: Test failed: Got unexpected colour 0x00000000 at (3, 3). d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000005, 0x00000000, 0x0000001f, 0x0000001e} at (0, 0), sub-resource 0. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xffdfc0a0 at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000001, 0x00000013, 0x00000013, 0x00000013} at (0, 0), sub-resource 0. d3d11.c:32853: Test failed: 0: Got unexpected colour 0xff0000ff. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xffdfc0a0 at (0, 0, 0), sub-resource 0. d3d11.c:32853: Test failed: 1: Got unexpected colour 0xff0000ff. d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:32618: Test failed: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:32853: Test failed: 2: Got unexpected colour 0xff0000ff. d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:31805: Test failed: Test 5: Got unexpected value 0. d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:33091: Test failed: Got unexpected colour 0xffff00b2. d3d11.c:32853: Test failed: 3: Got unexpected colour 0xff0000ff. d3d11.c:32853: Test failed: 4: Got unexpected colour 0xff0000ff. d3d11.c:32998: Test failed: 0: Got unexpected colour 0xb233801a. d3d11.c:32853: Test failed: 5: Got unexpected colour 0xff0000ff. d3d11.c:31824: Test failed: Test 5: Got unexpected value 0. d3d11.c:32998: Test failed: 1: Got unexpected colour 0xb233801a. d3d11.c:32853: Test failed: 6: Got unexpected colour 0xff0000ff. d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:32998: Test failed: 2: Got unexpected colour 0xb233801a. d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:32649: Test failed: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:32998: Test failed: 3: Got unexpected colour 0xb233801a. d3d11.c:32998: Test failed: 4: Got unexpected colour 0xb233801a. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xffdfc0a0 at (0, 0, 0), sub-resource 0. d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:32674: Test failed: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:31805: Test failed: Test 6: Got unexpected value 0. d3d11.c:32998: Test failed: 5: Got unexpected colour 0xb233801a. d3d11.c:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:32998: Test failed: 6: Got unexpected colour 0xb233801a. d3d11.c:32998: Test failed: 7: Got unexpected colour 0xb233801a. d3d11.c:31824: Test failed: Test 6: Got unexpected value 0. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xffbcffbc at (0, 0, 0), sub-resource 0. d3d11.c:32871: Test failed: 0: Got unexpected colour 0xff0000ff. d3d11.c:33016: Test failed: 0: Got unexpected colour 0xb233801a. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000000, 0x00000001, 0x00000064, 0x000000fa} at (0, 0), sub-resource 0. d3d11.c:32871: Test failed: 1: Got unexpected colour 0xff0000ff. d3d11.c:32871: Test failed: 2: Got unexpected colour 0xff0000ff. d3d11.c:33016: Test failed: 1: Got unexpected colour 0xb233801a. d3d11.c:32871: Test failed: 3: Got unexpected colour 0xff0000ff. d3d11.c:33016: Test failed: 2: Got unexpected colour 0xb233801a. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000000, 0x00000001, 0x00000064, 0x000000fa} at (0, 0), sub-resource 0. d3d11.c:32871: Test failed: 4: Got unexpected colour 0xff0000ff. d3d11.c:33016: Test failed: 3: Got unexpected colour 0xb233801a. d3d11.c:32871: Test failed: 5: Got unexpected colour 0xff0000ff. d3d11.c:33016: Test failed: 4: Got unexpected colour 0xb233801a. d3d11.c:31805: Test failed: Test 7: Got unexpected value 0. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xfff1e1cf at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000000, 0x00000001, 0x00000064, 0x000000fa} at (0, 0), sub-resource 0. d3d11.c:32871: Test failed: 6: Got unexpected colour 0xff0000ff. d3d11.c:33016: Test failed: 5: Got unexpected colour 0xb233801a. d3d11.c:32871: Test failed: 7: Got unexpected colour 0xff0000ff. d3d11.c:33016: Test failed: 6: Got unexpected colour 0xb233801a. d3d11.c:33016: Test failed: 7: Got unexpected colour 0xb233801a. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000000, 0x00000001, 0x00000064, 0x000000fa} at (0, 0), sub-resource 0. d3d11.c:31849: Test failed: Got 0xffffffff, expected 0xff404040 at (0, 0, 0), sub-resource 0. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xff80ff80 at (0, 0, 0), sub-resource 0. d3d11.c:33637: Test failed: Got unexpected query result 0x0000000000000000. d3d11.c:17940: Test failed: Got 0xffffffff, expected 0xff000000 at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000000, 0x00003c00, 0x0000bc00, 0x00006134} at (0, 0), sub-resource 0. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xfff0dec4 at (0, 0, 0), sub-resource 0. d3d11.c:31864: Test failed: Got 0xffffffff, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:34219: Test failed: Got unexpected colour 0xff000000. d3d11.c:34084: Test failed: Got unexpected colour 0x00000000 at (0, 0, 0), expected 0xff000000. d3d11.c:33407: Test failed: Got unexpected colour 0xff000000. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0f0f0f0f, 0xf0f0f0f0, 0xf0f0f0f0, 0x0f0f0f0f} at (0, 0), sub-resource 0. d3d11.c:31872: Test failed: Got 0xffffffff, expected 0xffff0000 at (0, 0, 0), sub-resource 0. d3d11.c:33420: Test failed: Got unexpected colour 0xff000000. d3d11.c:34299: Test failed: Got unexpected colour 0xff000000. d3d11.c:31876: Test failed: Got 0xffffffff, expected 0xff000000 at (0, 0, 0), sub-resource 0. d3d11.c:30320: Test failed: Got unexpected color 0xffffffff. d3d11.c:34319: Test failed: Got unexpected colour 0xff000000. d3d11.c:34335: Test failed: Got unexpected colour 0xff000000. d3d11.c:33474: Test failed: Got unexpected colour 0xff000000. d3d11.c:34920: Test failed: Format 0x2: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {-1.72477726e-034, 5.69045661e-028, -1.07374176e+008, -6.25985340e+018}. d3d11.c:34920: Test failed: Format 0x6: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {-1.72477726e-034, 5.69045661e-028, -1.07374176e+008, 1.00000000e+000}. d3d11.c:30318: Test failed: Got unexpected color 0xffffffff. d3d11.c:35382: Test failed: Got unexpected color 0x00000000 instead of 0xff0000ff. d3d11.c:35384: Test failed: Got unexpected color 0x00000000 instead of 0xff000000. d3d11.c:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:35404: Test failed: Got unexpected color 0x00000000 instead of 0xff000000. d3d11.c:35406: Test failed: Got unexpected color 0x00000000 instead of 0xff000000. d3d11.c:35599: Test failed: Got 0x00, expected 0xff at (0, 0, 0), sub-resource 0. d3d11.c:35433: Test failed: Got unexpected depth 0.00000000e+000 instead of 0.25. d3d11.c:35448: Test failed: Got unexpected color 0xff00ff00 instead of 0xff0000ff. d3d11.c:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:34920: Test failed: Format 0xd: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {5.24460614e-001, -9.42258954e-001, 6.75557733e-001, 1.42216250e-001}. d3d11.c:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:30320: Test failed: Got unexpected color 0xffffffff. d3d11.c:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:30318: Test failed: Got unexpected color 0xffffffff.
Pushed V2 - added patch to fix xrealloc attributes.