From: Jacek Caban jacek@codeweavers.com
--- dlls/mshtml/htmlelem.c | 448 ++--------------------------------------- 1 file changed, 18 insertions(+), 430 deletions(-)
diff --git a/dlls/mshtml/htmlelem.c b/dlls/mshtml/htmlelem.c index b2d1c544d0a..e8a5b3a1861 100644 --- a/dlls/mshtml/htmlelem.c +++ b/dlls/mshtml/htmlelem.c @@ -1193,58 +1193,8 @@ static dispex_static_data_t HTMLRectCollection_dispex = { HTMLRectCollection_iface_tids };
-static HRESULT WINAPI HTMLElement_QueryInterface(IHTMLElement *iface, - REFIID riid, void **ppv) -{ - HTMLElement *This = impl_from_IHTMLElement(iface); - - return IHTMLDOMNode_QueryInterface(&This->node.IHTMLDOMNode_iface, riid, ppv); -} - -static ULONG WINAPI HTMLElement_AddRef(IHTMLElement *iface) -{ - HTMLElement *This = impl_from_IHTMLElement(iface); - - return IHTMLDOMNode_AddRef(&This->node.IHTMLDOMNode_iface); -} - -static ULONG WINAPI HTMLElement_Release(IHTMLElement *iface) -{ - HTMLElement *This = impl_from_IHTMLElement(iface); - - return IHTMLDOMNode_Release(&This->node.IHTMLDOMNode_iface); -} - -static HRESULT WINAPI HTMLElement_GetTypeInfoCount(IHTMLElement *iface, UINT *pctinfo) -{ - HTMLElement *This = impl_from_IHTMLElement(iface); - return IDispatchEx_GetTypeInfoCount(&This->node.event_target.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLElement_GetTypeInfo(IHTMLElement *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLElement *This = impl_from_IHTMLElement(iface); - return IDispatchEx_GetTypeInfo(&This->node.event_target.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLElement_GetIDsOfNames(IHTMLElement *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, - LCID lcid, DISPID *rgDispId) -{ - HTMLElement *This = impl_from_IHTMLElement(iface); - return IDispatchEx_GetIDsOfNames(&This->node.event_target.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI HTMLElement_Invoke(IHTMLElement *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, - VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLElement *This = impl_from_IHTMLElement(iface); - return IDispatchEx_Invoke(&This->node.event_target.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLElement, IHTMLElement, + impl_from_IHTMLElement(iface)->node.event_target.dispex)
static inline WCHAR *translate_attr_name(WCHAR *attr_name, compat_mode_t compat_mode) { @@ -2856,55 +2806,8 @@ static inline HTMLElement *impl_from_IHTMLElement2(IHTMLElement2 *iface) return CONTAINING_RECORD(iface, HTMLElement, IHTMLElement2_iface); }
-static HRESULT WINAPI HTMLElement2_QueryInterface(IHTMLElement2 *iface, - REFIID riid, void **ppv) -{ - HTMLElement *This = impl_from_IHTMLElement2(iface); - return IHTMLElement_QueryInterface(&This->IHTMLElement_iface, riid, ppv); -} - -static ULONG WINAPI HTMLElement2_AddRef(IHTMLElement2 *iface) -{ - HTMLElement *This = impl_from_IHTMLElement2(iface); - return IHTMLElement_AddRef(&This->IHTMLElement_iface); -} - -static ULONG WINAPI HTMLElement2_Release(IHTMLElement2 *iface) -{ - HTMLElement *This = impl_from_IHTMLElement2(iface); - return IHTMLElement_Release(&This->IHTMLElement_iface); -} - -static HRESULT WINAPI HTMLElement2_GetTypeInfoCount(IHTMLElement2 *iface, UINT *pctinfo) -{ - HTMLElement *This = impl_from_IHTMLElement2(iface); - return IDispatchEx_GetTypeInfoCount(&This->node.event_target.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLElement2_GetTypeInfo(IHTMLElement2 *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLElement *This = impl_from_IHTMLElement2(iface); - return IDispatchEx_GetTypeInfo(&This->node.event_target.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLElement2_GetIDsOfNames(IHTMLElement2 *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, - LCID lcid, DISPID *rgDispId) -{ - HTMLElement *This = impl_from_IHTMLElement2(iface); - return IDispatchEx_GetIDsOfNames(&This->node.event_target.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI HTMLElement2_Invoke(IHTMLElement2 *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, - VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLElement *This = impl_from_IHTMLElement2(iface); - return IDispatchEx_Invoke(&This->node.event_target.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLElement2, IHTMLElement2, + impl_from_IHTMLElement2(iface)->node.event_target.dispex)
static HRESULT WINAPI HTMLElement2_get_scopeName(IHTMLElement2 *iface, BSTR *p) { @@ -4090,55 +3993,8 @@ static inline HTMLElement *impl_from_IHTMLElement3(IHTMLElement3 *iface) return CONTAINING_RECORD(iface, HTMLElement, IHTMLElement3_iface); }
-static HRESULT WINAPI HTMLElement3_QueryInterface(IHTMLElement3 *iface, - REFIID riid, void **ppv) -{ - HTMLElement *This = impl_from_IHTMLElement3(iface); - return IHTMLElement_QueryInterface(&This->IHTMLElement_iface, riid, ppv); -} - -static ULONG WINAPI HTMLElement3_AddRef(IHTMLElement3 *iface) -{ - HTMLElement *This = impl_from_IHTMLElement3(iface); - return IHTMLElement_AddRef(&This->IHTMLElement_iface); -} - -static ULONG WINAPI HTMLElement3_Release(IHTMLElement3 *iface) -{ - HTMLElement *This = impl_from_IHTMLElement3(iface); - return IHTMLElement_Release(&This->IHTMLElement_iface); -} - -static HRESULT WINAPI HTMLElement3_GetTypeInfoCount(IHTMLElement3 *iface, UINT *pctinfo) -{ - HTMLElement *This = impl_from_IHTMLElement3(iface); - return IDispatchEx_GetTypeInfoCount(&This->node.event_target.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLElement3_GetTypeInfo(IHTMLElement3 *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLElement *This = impl_from_IHTMLElement3(iface); - return IDispatchEx_GetTypeInfo(&This->node.event_target.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLElement3_GetIDsOfNames(IHTMLElement3 *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, - LCID lcid, DISPID *rgDispId) -{ - HTMLElement *This = impl_from_IHTMLElement3(iface); - return IDispatchEx_GetIDsOfNames(&This->node.event_target.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI HTMLElement3_Invoke(IHTMLElement3 *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, - VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLElement *This = impl_from_IHTMLElement3(iface); - return IDispatchEx_Invoke(&This->node.event_target.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLElement3, IHTMLElement3, + impl_from_IHTMLElement3(iface)->node.event_target.dispex)
static HRESULT WINAPI HTMLElement3_mergeAttributes(IHTMLElement3 *iface, IHTMLElement *mergeThis, VARIANT *pvarFlags) { @@ -4555,53 +4411,8 @@ static inline HTMLElement *impl_from_IHTMLElement4(IHTMLElement4 *iface) return CONTAINING_RECORD(iface, HTMLElement, IHTMLElement4_iface); }
-static HRESULT WINAPI HTMLElement4_QueryInterface(IHTMLElement4 *iface, - REFIID riid, void **ppv) -{ - HTMLElement *This = impl_from_IHTMLElement4(iface); - return IHTMLElement_QueryInterface(&This->IHTMLElement_iface, riid, ppv); -} - -static ULONG WINAPI HTMLElement4_AddRef(IHTMLElement4 *iface) -{ - HTMLElement *This = impl_from_IHTMLElement4(iface); - return IHTMLElement_AddRef(&This->IHTMLElement_iface); -} - -static ULONG WINAPI HTMLElement4_Release(IHTMLElement4 *iface) -{ - HTMLElement *This = impl_from_IHTMLElement4(iface); - return IHTMLElement_Release(&This->IHTMLElement_iface); -} - -static HRESULT WINAPI HTMLElement4_GetTypeInfoCount(IHTMLElement4 *iface, UINT *pctinfo) -{ - HTMLElement *This = impl_from_IHTMLElement4(iface); - return IDispatchEx_GetTypeInfoCount(&This->node.event_target.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLElement4_GetTypeInfo(IHTMLElement4 *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLElement *This = impl_from_IHTMLElement4(iface); - return IDispatchEx_GetTypeInfo(&This->node.event_target.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLElement4_GetIDsOfNames(IHTMLElement4 *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLElement *This = impl_from_IHTMLElement4(iface); - return IDispatchEx_GetIDsOfNames(&This->node.event_target.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI HTMLElement4_Invoke(IHTMLElement4 *iface, DISPID dispIdMember, REFIID riid, - LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLElement *This = impl_from_IHTMLElement4(iface); - return IDispatchEx_Invoke(&This->node.event_target.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLElement4, IHTMLElement4, + impl_from_IHTMLElement4(iface)->node.event_target.dispex)
static HRESULT WINAPI HTMLElement4_put_onmousewheel(IHTMLElement4 *iface, VARIANT v) { @@ -4803,53 +4614,8 @@ static inline HTMLElement *impl_from_IHTMLElement6(IHTMLElement6 *iface) return CONTAINING_RECORD(iface, HTMLElement, IHTMLElement6_iface); }
-static HRESULT WINAPI HTMLElement6_QueryInterface(IHTMLElement6 *iface, - REFIID riid, void **ppv) -{ - HTMLElement *This = impl_from_IHTMLElement6(iface); - return IHTMLElement_QueryInterface(&This->IHTMLElement_iface, riid, ppv); -} - -static ULONG WINAPI HTMLElement6_AddRef(IHTMLElement6 *iface) -{ - HTMLElement *This = impl_from_IHTMLElement6(iface); - return IHTMLElement_AddRef(&This->IHTMLElement_iface); -} - -static ULONG WINAPI HTMLElement6_Release(IHTMLElement6 *iface) -{ - HTMLElement *This = impl_from_IHTMLElement6(iface); - return IHTMLElement_Release(&This->IHTMLElement_iface); -} - -static HRESULT WINAPI HTMLElement6_GetTypeInfoCount(IHTMLElement6 *iface, UINT *pctinfo) -{ - HTMLElement *This = impl_from_IHTMLElement6(iface); - return IDispatchEx_GetTypeInfoCount(&This->node.event_target.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLElement6_GetTypeInfo(IHTMLElement6 *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLElement *This = impl_from_IHTMLElement6(iface); - return IDispatchEx_GetTypeInfo(&This->node.event_target.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLElement6_GetIDsOfNames(IHTMLElement6 *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLElement *This = impl_from_IHTMLElement6(iface); - return IDispatchEx_GetIDsOfNames(&This->node.event_target.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI HTMLElement6_Invoke(IHTMLElement6 *iface, DISPID dispIdMember, REFIID riid, - LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLElement *This = impl_from_IHTMLElement6(iface); - return IDispatchEx_Invoke(&This->node.event_target.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLElement6, IHTMLElement6, + impl_from_IHTMLElement6(iface)->node.event_target.dispex)
static HRESULT WINAPI HTMLElement6_getAttributeNS(IHTMLElement6 *iface, VARIANT *pvarNS, BSTR strAttributeName, VARIANT *AttributeValue) { @@ -5670,53 +5436,8 @@ static inline HTMLElement *impl_from_IHTMLElement7(IHTMLElement7 *iface) return CONTAINING_RECORD(iface, HTMLElement, IHTMLElement7_iface); }
-static HRESULT WINAPI HTMLElement7_QueryInterface(IHTMLElement7 *iface, - REFIID riid, void **ppv) -{ - HTMLElement *This = impl_from_IHTMLElement7(iface); - return IHTMLElement_QueryInterface(&This->IHTMLElement_iface, riid, ppv); -} - -static ULONG WINAPI HTMLElement7_AddRef(IHTMLElement7 *iface) -{ - HTMLElement *This = impl_from_IHTMLElement7(iface); - return IHTMLElement_AddRef(&This->IHTMLElement_iface); -} - -static ULONG WINAPI HTMLElement7_Release(IHTMLElement7 *iface) -{ - HTMLElement *This = impl_from_IHTMLElement7(iface); - return IHTMLElement_Release(&This->IHTMLElement_iface); -} - -static HRESULT WINAPI HTMLElement7_GetTypeInfoCount(IHTMLElement7 *iface, UINT *pctinfo) -{ - HTMLElement *This = impl_from_IHTMLElement7(iface); - return IDispatchEx_GetTypeInfoCount(&This->node.event_target.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLElement7_GetTypeInfo(IHTMLElement7 *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLElement *This = impl_from_IHTMLElement7(iface); - return IDispatchEx_GetTypeInfo(&This->node.event_target.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLElement7_GetIDsOfNames(IHTMLElement7 *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLElement *This = impl_from_IHTMLElement7(iface); - return IDispatchEx_GetIDsOfNames(&This->node.event_target.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI HTMLElement7_Invoke(IHTMLElement7 *iface, DISPID dispIdMember, REFIID riid, - LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLElement *This = impl_from_IHTMLElement7(iface); - return IDispatchEx_Invoke(&This->node.event_target.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLElement7, IHTMLElement7, + impl_from_IHTMLElement7(iface)->node.event_target.dispex)
static HRESULT WINAPI HTMLElement7_put_onmspointerdown(IHTMLElement7 *iface, VARIANT v) { @@ -6193,52 +5914,8 @@ static inline HTMLElement *impl_from_IHTMLUniqueName(IHTMLUniqueName *iface) return CONTAINING_RECORD(iface, HTMLElement, IHTMLUniqueName_iface); }
-static HRESULT WINAPI HTMLUniqueName_QueryInterface(IHTMLUniqueName *iface, REFIID riid, void **ppv) -{ - HTMLElement *This = impl_from_IHTMLUniqueName(iface); - return IHTMLElement_QueryInterface(&This->IHTMLElement_iface, riid, ppv); -} - -static ULONG WINAPI HTMLUniqueName_AddRef(IHTMLUniqueName *iface) -{ - HTMLElement *This = impl_from_IHTMLUniqueName(iface); - return IHTMLElement_AddRef(&This->IHTMLElement_iface); -} - -static ULONG WINAPI HTMLUniqueName_Release(IHTMLUniqueName *iface) -{ - HTMLElement *This = impl_from_IHTMLUniqueName(iface); - return IHTMLElement_Release(&This->IHTMLElement_iface); -} - -static HRESULT WINAPI HTMLUniqueName_GetTypeInfoCount(IHTMLUniqueName *iface, UINT *pctinfo) -{ - HTMLElement *This = impl_from_IHTMLUniqueName(iface); - return IDispatchEx_GetTypeInfoCount(&This->node.event_target.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLUniqueName_GetTypeInfo(IHTMLUniqueName *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLElement *This = impl_from_IHTMLUniqueName(iface); - return IDispatchEx_GetTypeInfo(&This->node.event_target.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLUniqueName_GetIDsOfNames(IHTMLUniqueName *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLElement *This = impl_from_IHTMLUniqueName(iface); - return IDispatchEx_GetIDsOfNames(&This->node.event_target.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI HTMLUniqueName_Invoke(IHTMLUniqueName *iface, DISPID dispIdMember, REFIID riid, - LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLElement *This = impl_from_IHTMLUniqueName(iface); - return IDispatchEx_Invoke(&This->node.event_target.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLUniqueName, IHTMLUniqueName, + impl_from_IHTMLUniqueName(iface)->node.event_target.dispex)
HRESULT elem_unique_id(unsigned id, BSTR *p) { @@ -6293,51 +5970,8 @@ static inline HTMLElement *impl_from_IElementSelector(IElementSelector *iface) return CONTAINING_RECORD(iface, HTMLElement, IElementSelector_iface); }
-static HRESULT WINAPI ElementSelector_QueryInterface(IElementSelector *iface, REFIID riid, void **ppv) -{ - HTMLElement *This = impl_from_IElementSelector(iface); - return IHTMLElement_QueryInterface(&This->IHTMLElement_iface, riid, ppv); -} - -static ULONG WINAPI ElementSelector_AddRef(IElementSelector *iface) -{ - HTMLElement *This = impl_from_IElementSelector(iface); - return IHTMLElement_AddRef(&This->IHTMLElement_iface); -} - -static ULONG WINAPI ElementSelector_Release(IElementSelector *iface) -{ - HTMLElement *This = impl_from_IElementSelector(iface); - return IHTMLElement_Release(&This->IHTMLElement_iface); -} - -static HRESULT WINAPI ElementSelector_GetTypeInfoCount(IElementSelector *iface, UINT *pctinfo) -{ - HTMLElement *This = impl_from_IElementSelector(iface); - return IDispatchEx_GetTypeInfoCount(&This->node.event_target.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI ElementSelector_GetTypeInfo(IElementSelector *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLElement *This = impl_from_IElementSelector(iface); - return IDispatchEx_GetTypeInfo(&This->node.event_target.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI ElementSelector_GetIDsOfNames(IElementSelector *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLElement *This = impl_from_IElementSelector(iface); - return IDispatchEx_GetIDsOfNames(&This->node.event_target.dispex.IDispatchEx_iface, riid, rgszNames, cNames, lcid, rgDispId); -} - -static HRESULT WINAPI ElementSelector_Invoke(IElementSelector *iface, DISPID dispIdMember, REFIID riid, - LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLElement *This = impl_from_IElementSelector(iface); - return IDispatchEx_Invoke(&This->node.event_target.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, wFlags, - pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(ElementSelector, IElementSelector, + impl_from_IElementSelector(iface)->node.event_target.dispex)
static HRESULT WINAPI ElementSelector_querySelector(IElementSelector *iface, BSTR v, IHTMLElement **pel) { @@ -6488,54 +6122,8 @@ static inline HTMLElement *impl_from_IElementTraversal(IElementTraversal *iface) return CONTAINING_RECORD(iface, HTMLElement, IElementTraversal_iface); }
-static HRESULT WINAPI ElementTraversal_QueryInterface(IElementTraversal *iface, REFIID riid, void **ppv) -{ - HTMLElement *This = impl_from_IElementTraversal(iface); - return IHTMLElement_QueryInterface(&This->IHTMLElement_iface, riid, ppv); -} - -static ULONG WINAPI ElementTraversal_AddRef(IElementTraversal *iface) -{ - HTMLElement *This = impl_from_IElementTraversal(iface); - - return IHTMLElement_AddRef(&This->IHTMLElement_iface); -} - -static ULONG WINAPI ElementTraversal_Release(IElementTraversal *iface) -{ - HTMLElement *This = impl_from_IElementTraversal(iface); - - return IHTMLElement_Release(&This->IHTMLElement_iface); -} - -static HRESULT WINAPI ElementTraversal_GetTypeInfoCount(IElementTraversal *iface, UINT *pctinfo) -{ - HTMLElement *This = impl_from_IElementTraversal(iface); - return IDispatchEx_GetTypeInfoCount(&This->node.event_target.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI ElementTraversal_GetTypeInfo(IElementTraversal *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLElement *This = impl_from_IElementTraversal(iface); - return IDispatchEx_GetTypeInfo(&This->node.event_target.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI ElementTraversal_GetIDsOfNames(IElementTraversal *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLElement *This = impl_from_IElementTraversal(iface); - return IDispatchEx_GetIDsOfNames(&This->node.event_target.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI ElementTraversal_Invoke(IElementTraversal *iface, DISPID dispIdMember, REFIID riid, - LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLElement *This = impl_from_IElementTraversal(iface); - return IDispatchEx_Invoke(&This->node.event_target.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(ElementTraversal, IElementTraversal, + impl_from_IElementTraversal(iface)->node.event_target.dispex)
static HRESULT WINAPI ElementTraversal_get_firstElementChild(IElementTraversal *iface, IHTMLElement **p) {
From: Jacek Caban jacek@codeweavers.com
--- dlls/mshtml/htmlelem.c | 299 ++--------------------------------------- 1 file changed, 10 insertions(+), 289 deletions(-)
diff --git a/dlls/mshtml/htmlelem.c b/dlls/mshtml/htmlelem.c index e8a5b3a1861..e62c08f1148 100644 --- a/dlls/mshtml/htmlelem.c +++ b/dlls/mshtml/htmlelem.c @@ -934,54 +934,7 @@ static inline HTMLRectCollection *impl_from_IHTMLRectCollection(IHTMLRectCollect return CONTAINING_RECORD(iface, HTMLRectCollection, IHTMLRectCollection_iface); }
-static HRESULT WINAPI HTMLRectCollection_QueryInterface(IHTMLRectCollection *iface, REFIID riid, void **ppv) -{ - HTMLRectCollection *This = impl_from_IHTMLRectCollection(iface); - return IDispatchEx_QueryInterface(&This->dispex.IDispatchEx_iface, riid, ppv); -} - -static ULONG WINAPI HTMLRectCollection_AddRef(IHTMLRectCollection *iface) -{ - HTMLRectCollection *This = impl_from_IHTMLRectCollection(iface); - return IDispatchEx_AddRef(&This->dispex.IDispatchEx_iface); -} - -static ULONG WINAPI HTMLRectCollection_Release(IHTMLRectCollection *iface) -{ - HTMLRectCollection *This = impl_from_IHTMLRectCollection(iface); - return IDispatchEx_Release(&This->dispex.IDispatchEx_iface); -} - -static HRESULT WINAPI HTMLRectCollection_GetTypeInfoCount(IHTMLRectCollection *iface, UINT *pctinfo) -{ - HTMLRectCollection *This = impl_from_IHTMLRectCollection(iface); - FIXME("(%p)->(%p)\n", This, pctinfo); - return E_NOTIMPL; -} - -static HRESULT WINAPI HTMLRectCollection_GetTypeInfo(IHTMLRectCollection *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLRectCollection *This = impl_from_IHTMLRectCollection(iface); - return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLRectCollection_GetIDsOfNames(IHTMLRectCollection *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLRectCollection *This = impl_from_IHTMLRectCollection(iface); - return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI HTMLRectCollection_Invoke(IHTMLRectCollection *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, - VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLRectCollection *This = impl_from_IHTMLRectCollection(iface); - return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid, wFlags, - pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLRectCollection, IHTMLRectCollection, impl_from_IHTMLRectCollection(iface)->dispex)
static HRESULT WINAPI HTMLRectCollection_get_length(IHTMLRectCollection *iface, LONG *p) { @@ -6807,57 +6760,7 @@ static inline struct token_list *impl_from_IWineDOMTokenList(IWineDOMTokenList * return CONTAINING_RECORD(iface, struct token_list, IWineDOMTokenList_iface); }
-static HRESULT WINAPI token_list_QueryInterface(IWineDOMTokenList *iface, REFIID riid, void **ppv) -{ - struct token_list *token_list = impl_from_IWineDOMTokenList(iface); - return IDispatchEx_QueryInterface(&token_list->dispex.IDispatchEx_iface, riid, ppv); -} - -static ULONG WINAPI token_list_AddRef(IWineDOMTokenList *iface) -{ - struct token_list *token_list = impl_from_IWineDOMTokenList(iface); - return IDispatchEx_AddRef(&token_list->dispex.IDispatchEx_iface); -} - -static ULONG WINAPI token_list_Release(IWineDOMTokenList *iface) -{ - struct token_list *token_list = impl_from_IWineDOMTokenList(iface); - return IDispatchEx_Release(&token_list->dispex.IDispatchEx_iface); -} - -static HRESULT WINAPI token_list_GetTypeInfoCount(IWineDOMTokenList *iface, UINT *pctinfo) -{ - struct token_list *token_list = impl_from_IWineDOMTokenList(iface); - FIXME("(%p)->(%p)\n", token_list, pctinfo); - return E_NOTIMPL; -} - -static HRESULT WINAPI token_list_GetTypeInfo(IWineDOMTokenList *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - struct token_list *token_list = impl_from_IWineDOMTokenList(iface); - - return IDispatchEx_GetTypeInfo(&token_list->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI token_list_GetIDsOfNames(IWineDOMTokenList *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - struct token_list *token_list = impl_from_IWineDOMTokenList(iface); - - return IDispatchEx_GetIDsOfNames(&token_list->dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI token_list_Invoke(IWineDOMTokenList *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, - VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - struct token_list *token_list = impl_from_IWineDOMTokenList(iface); - - return IDispatchEx_Invoke(&token_list->dispex.IDispatchEx_iface, dispIdMember, riid, lcid, wFlags, - pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(token_list, IWineDOMTokenList, impl_from_IWineDOMTokenList(iface)->dispex)
static const WCHAR *find_token(const WCHAR *list, const WCHAR *token, unsigned int token_len) { @@ -7503,55 +7406,8 @@ HRESULT get_element(nsIDOMElement *nselem, HTMLElement **ret) return S_OK; }
-/* interface IHTMLFiltersCollection */ -static HRESULT WINAPI HTMLFiltersCollection_QueryInterface(IHTMLFiltersCollection *iface, REFIID riid, void **ppv) -{ - HTMLFiltersCollection *This = impl_from_IHTMLFiltersCollection(iface); - return IDispatchEx_QueryInterface(&This->dispex.IDispatchEx_iface, riid, ppv); -} - -static ULONG WINAPI HTMLFiltersCollection_AddRef(IHTMLFiltersCollection *iface) -{ - HTMLFiltersCollection *This = impl_from_IHTMLFiltersCollection(iface); - return IDispatchEx_AddRef(&This->dispex.IDispatchEx_iface); -} - -static ULONG WINAPI HTMLFiltersCollection_Release(IHTMLFiltersCollection *iface) -{ - HTMLFiltersCollection *This = impl_from_IHTMLFiltersCollection(iface); - return IDispatchEx_Release(&This->dispex.IDispatchEx_iface); -} - -static HRESULT WINAPI HTMLFiltersCollection_GetTypeInfoCount(IHTMLFiltersCollection *iface, UINT *pctinfo) -{ - HTMLFiltersCollection *This = impl_from_IHTMLFiltersCollection(iface); - return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLFiltersCollection_GetTypeInfo(IHTMLFiltersCollection *iface, - UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLFiltersCollection *This = impl_from_IHTMLFiltersCollection(iface); - return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLFiltersCollection_GetIDsOfNames(IHTMLFiltersCollection *iface, - REFIID riid, LPOLESTR *rgszNames, UINT cNames, - LCID lcid, DISPID *rgDispId) -{ - HTMLFiltersCollection *This = impl_from_IHTMLFiltersCollection(iface); - return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI HTMLFiltersCollection_Invoke(IHTMLFiltersCollection *iface, DISPID dispIdMember, REFIID riid, - LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, - EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLFiltersCollection *This = impl_from_IHTMLFiltersCollection(iface); - return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLFiltersCollection, IHTMLFiltersCollection, + impl_from_IHTMLFiltersCollection(iface)->dispex)
static HRESULT WINAPI HTMLFiltersCollection_get_length(IHTMLFiltersCollection *iface, LONG *p) { @@ -7929,53 +7785,8 @@ static inline HTMLAttributeCollection *impl_from_IHTMLAttributeCollection(IHTMLA return CONTAINING_RECORD(iface, HTMLAttributeCollection, IHTMLAttributeCollection_iface); }
-static HRESULT WINAPI HTMLAttributeCollection_QueryInterface(IHTMLAttributeCollection *iface, REFIID riid, void **ppv) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection(iface); - return IDispatchEx_QueryInterface(&This->dispex.IDispatchEx_iface, riid, ppv); -} - -static ULONG WINAPI HTMLAttributeCollection_AddRef(IHTMLAttributeCollection *iface) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection(iface); - return IDispatchEx_AddRef(&This->dispex.IDispatchEx_iface); -} - -static ULONG WINAPI HTMLAttributeCollection_Release(IHTMLAttributeCollection *iface) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection(iface); - return IDispatchEx_Release(&This->dispex.IDispatchEx_iface); -} - -static HRESULT WINAPI HTMLAttributeCollection_GetTypeInfoCount(IHTMLAttributeCollection *iface, UINT *pctinfo) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection(iface); - return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLAttributeCollection_GetTypeInfo(IHTMLAttributeCollection *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection(iface); - return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLAttributeCollection_GetIDsOfNames(IHTMLAttributeCollection *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection(iface); - return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI HTMLAttributeCollection_Invoke(IHTMLAttributeCollection *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, - VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection(iface); - return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLAttributeCollection, IHTMLAttributeCollection, + impl_from_IHTMLAttributeCollection(iface)->dispex)
static HRESULT WINAPI HTMLAttributeCollection_get_length(IHTMLAttributeCollection *iface, LONG *p) { @@ -8063,53 +7874,8 @@ static inline HTMLAttributeCollection *impl_from_IHTMLAttributeCollection2(IHTML return CONTAINING_RECORD(iface, HTMLAttributeCollection, IHTMLAttributeCollection2_iface); }
-static HRESULT WINAPI HTMLAttributeCollection2_QueryInterface(IHTMLAttributeCollection2 *iface, REFIID riid, void **ppv) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection2(iface); - return IHTMLAttributeCollection_QueryInterface(&This->IHTMLAttributeCollection_iface, riid, ppv); -} - -static ULONG WINAPI HTMLAttributeCollection2_AddRef(IHTMLAttributeCollection2 *iface) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection2(iface); - return IHTMLAttributeCollection_AddRef(&This->IHTMLAttributeCollection_iface); -} - -static ULONG WINAPI HTMLAttributeCollection2_Release(IHTMLAttributeCollection2 *iface) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection2(iface); - return IHTMLAttributeCollection_Release(&This->IHTMLAttributeCollection_iface); -} - -static HRESULT WINAPI HTMLAttributeCollection2_GetTypeInfoCount(IHTMLAttributeCollection2 *iface, UINT *pctinfo) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection2(iface); - return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLAttributeCollection2_GetTypeInfo(IHTMLAttributeCollection2 *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection2(iface); - return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLAttributeCollection2_GetIDsOfNames(IHTMLAttributeCollection2 *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection2(iface); - return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI HTMLAttributeCollection2_Invoke(IHTMLAttributeCollection2 *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, - VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection2(iface); - return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLAttributeCollection2, IHTMLAttributeCollection2, + impl_from_IHTMLAttributeCollection2(iface)->dispex)
static HRESULT WINAPI HTMLAttributeCollection2_getNamedItem(IHTMLAttributeCollection2 *iface, BSTR bstrName, IHTMLDOMAttribute **newretNode) @@ -8171,53 +7937,8 @@ static inline HTMLAttributeCollection *impl_from_IHTMLAttributeCollection3(IHTML return CONTAINING_RECORD(iface, HTMLAttributeCollection, IHTMLAttributeCollection3_iface); }
-static HRESULT WINAPI HTMLAttributeCollection3_QueryInterface(IHTMLAttributeCollection3 *iface, REFIID riid, void **ppv) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection3(iface); - return IHTMLAttributeCollection_QueryInterface(&This->IHTMLAttributeCollection_iface, riid, ppv); -} - -static ULONG WINAPI HTMLAttributeCollection3_AddRef(IHTMLAttributeCollection3 *iface) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection3(iface); - return IHTMLAttributeCollection_AddRef(&This->IHTMLAttributeCollection_iface); -} - -static ULONG WINAPI HTMLAttributeCollection3_Release(IHTMLAttributeCollection3 *iface) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection3(iface); - return IHTMLAttributeCollection_Release(&This->IHTMLAttributeCollection_iface); -} - -static HRESULT WINAPI HTMLAttributeCollection3_GetTypeInfoCount(IHTMLAttributeCollection3 *iface, UINT *pctinfo) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection3(iface); - return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLAttributeCollection3_GetTypeInfo(IHTMLAttributeCollection3 *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection3(iface); - return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLAttributeCollection3_GetIDsOfNames(IHTMLAttributeCollection3 *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection3(iface); - return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI HTMLAttributeCollection3_Invoke(IHTMLAttributeCollection3 *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, - VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLAttributeCollection *This = impl_from_IHTMLAttributeCollection3(iface); - return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLAttributeCollection3, IHTMLAttributeCollection3, + impl_from_IHTMLAttributeCollection3(iface)->dispex)
static HRESULT WINAPI HTMLAttributeCollection3_getNamedItem(IHTMLAttributeCollection3 *iface, BSTR bstrName, IHTMLDOMAttribute **ppNodeOut)
From: Jacek Caban jacek@codeweavers.com
--- dlls/mshtml/htmlelemcol.c | 51 ++------------------------------------- 1 file changed, 2 insertions(+), 49 deletions(-)
diff --git a/dlls/mshtml/htmlelemcol.c b/dlls/mshtml/htmlelemcol.c index 8ebe741c309..8b69de72a17 100644 --- a/dlls/mshtml/htmlelemcol.c +++ b/dlls/mshtml/htmlelemcol.c @@ -210,55 +210,8 @@ static inline HTMLElementCollection *impl_from_IHTMLElementCollection(IHTMLEleme return CONTAINING_RECORD(iface, HTMLElementCollection, IHTMLElementCollection_iface); }
-static HRESULT WINAPI HTMLElementCollection_QueryInterface(IHTMLElementCollection *iface, - REFIID riid, void **ppv) -{ - HTMLElementCollection *This = impl_from_IHTMLElementCollection(iface); - return IDispatchEx_QueryInterface(&This->dispex.IDispatchEx_iface, riid, ppv); -} - -static ULONG WINAPI HTMLElementCollection_AddRef(IHTMLElementCollection *iface) -{ - HTMLElementCollection *This = impl_from_IHTMLElementCollection(iface); - return IDispatchEx_AddRef(&This->dispex.IDispatchEx_iface); -} - -static ULONG WINAPI HTMLElementCollection_Release(IHTMLElementCollection *iface) -{ - HTMLElementCollection *This = impl_from_IHTMLElementCollection(iface); - return IDispatchEx_Release(&This->dispex.IDispatchEx_iface); -} - -static HRESULT WINAPI HTMLElementCollection_GetTypeInfoCount(IHTMLElementCollection *iface, - UINT *pctinfo) -{ - HTMLElementCollection *This = impl_from_IHTMLElementCollection(iface); - return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLElementCollection_GetTypeInfo(IHTMLElementCollection *iface, - UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLElementCollection *This = impl_from_IHTMLElementCollection(iface); - return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLElementCollection_GetIDsOfNames(IHTMLElementCollection *iface, - REFIID riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLElementCollection *This = impl_from_IHTMLElementCollection(iface); - return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI HTMLElementCollection_Invoke(IHTMLElementCollection *iface, - DISPID dispIdMember, REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, - VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLElementCollection *This = impl_from_IHTMLElementCollection(iface); - return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLElementCollection, IHTMLElementCollection, + impl_from_IHTMLElementCollection(iface)->dispex)
static HRESULT WINAPI HTMLElementCollection_toString(IHTMLElementCollection *iface, BSTR *String)
From: Jacek Caban jacek@codeweavers.com
--- dlls/mshtml/htmlevent.c | 274 +--------------------------------------- 1 file changed, 6 insertions(+), 268 deletions(-)
diff --git a/dlls/mshtml/htmlevent.c b/dlls/mshtml/htmlevent.c index 7d6eb04fe9d..8f2c916da18 100644 --- a/dlls/mshtml/htmlevent.c +++ b/dlls/mshtml/htmlevent.c @@ -379,54 +379,7 @@ static inline HTMLEventObj *impl_from_IHTMLEventObj(IHTMLEventObj *iface) return CONTAINING_RECORD(iface, HTMLEventObj, IHTMLEventObj_iface); }
-static HRESULT WINAPI HTMLEventObj_QueryInterface(IHTMLEventObj *iface, REFIID riid, void **ppv) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj(iface); - return IDispatchEx_QueryInterface(&This->dispex.IDispatchEx_iface, riid, ppv); -} - -static ULONG WINAPI HTMLEventObj_AddRef(IHTMLEventObj *iface) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj(iface); - return IDispatchEx_AddRef(&This->dispex.IDispatchEx_iface); -} - -static ULONG WINAPI HTMLEventObj_Release(IHTMLEventObj *iface) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj(iface); - return IDispatchEx_Release(&This->dispex.IDispatchEx_iface); -} - -static HRESULT WINAPI HTMLEventObj_GetTypeInfoCount(IHTMLEventObj *iface, UINT *pctinfo) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj(iface); - return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLEventObj_GetTypeInfo(IHTMLEventObj *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj(iface); - return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLEventObj_GetIDsOfNames(IHTMLEventObj *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, - LCID lcid, DISPID *rgDispId) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj(iface); - return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI HTMLEventObj_Invoke(IHTMLEventObj *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, - VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj(iface); - return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLEventObj, IHTMLEventObj, impl_from_IHTMLEventObj(iface)->dispex)
static HRESULT WINAPI HTMLEventObj_get_srcElement(IHTMLEventObj *iface, IHTMLElement **p) { @@ -879,50 +832,7 @@ static inline HTMLEventObj *impl_from_IHTMLEventObj2(IHTMLEventObj2 *iface) return CONTAINING_RECORD(iface, HTMLEventObj, IHTMLEventObj2_iface); }
-static HRESULT WINAPI HTMLEventObj2_QueryInterface(IHTMLEventObj2 *iface, REFIID riid, void **ppv) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj2(iface); - return IHTMLEventObj_QueryInterface(&This->IHTMLEventObj_iface, riid, ppv); -} - -static ULONG WINAPI HTMLEventObj2_AddRef(IHTMLEventObj2 *iface) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj2(iface); - return IHTMLEventObj_AddRef(&This->IHTMLEventObj_iface); -} - -static ULONG WINAPI HTMLEventObj2_Release(IHTMLEventObj2 *iface) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj2(iface); - return IHTMLEventObj_Release(&This->IHTMLEventObj_iface); -} - -static HRESULT WINAPI HTMLEventObj2_GetTypeInfoCount(IHTMLEventObj2 *iface, UINT *pctinfo) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj2(iface); - return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLEventObj2_GetTypeInfo(IHTMLEventObj2 *iface, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj2(iface); - return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLEventObj2_GetIDsOfNames(IHTMLEventObj2 *iface, REFIID riid,LPOLESTR *rgszNames, - UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj2(iface); - return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames, lcid, rgDispId); -} - -static HRESULT WINAPI HTMLEventObj2_Invoke(IHTMLEventObj2 *iface, DISPID dispIdMember, REFIID riid, LCID lcid, - WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj2(iface); - return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid, wFlags, pDispParams, - pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLEventObj2, IHTMLEventObj2, impl_from_IHTMLEventObj2(iface)->dispex)
static HRESULT WINAPI HTMLEventObj2_setAttribute(IHTMLEventObj2 *iface, BSTR strAttributeName, VARIANT AttributeValue, LONG lFlags) { @@ -1442,50 +1352,7 @@ static inline HTMLEventObj *impl_from_IHTMLEventObj3(IHTMLEventObj3 *iface) return CONTAINING_RECORD(iface, HTMLEventObj, IHTMLEventObj3_iface); }
-static HRESULT WINAPI HTMLEventObj3_QueryInterface(IHTMLEventObj3 *iface, REFIID riid, void **ppv) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj3(iface); - return IHTMLEventObj_QueryInterface(&This->IHTMLEventObj_iface, riid, ppv); -} - -static ULONG WINAPI HTMLEventObj3_AddRef(IHTMLEventObj3 *iface) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj3(iface); - return IHTMLEventObj_AddRef(&This->IHTMLEventObj_iface); -} - -static ULONG WINAPI HTMLEventObj3_Release(IHTMLEventObj3 *iface) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj3(iface); - return IHTMLEventObj_Release(&This->IHTMLEventObj_iface); -} - -static HRESULT WINAPI HTMLEventObj3_GetTypeInfoCount(IHTMLEventObj3 *iface, UINT *pctinfo) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj3(iface); - return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLEventObj3_GetTypeInfo(IHTMLEventObj3 *iface, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj3(iface); - return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLEventObj3_GetIDsOfNames(IHTMLEventObj3 *iface, REFIID riid,LPOLESTR *rgszNames, - UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj3(iface); - return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames, lcid, rgDispId); -} - -static HRESULT WINAPI HTMLEventObj3_Invoke(IHTMLEventObj3 *iface, DISPID dispIdMember, REFIID riid, LCID lcid, - WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj3(iface); - return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid, wFlags, pDispParams, - pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLEventObj3, IHTMLEventObj3, impl_from_IHTMLEventObj3(iface)->dispex)
static HRESULT WINAPI HTMLEventObj3_get_contentOverflow(IHTMLEventObj3 *iface, VARIANT_BOOL *p) { @@ -1662,50 +1529,7 @@ static inline HTMLEventObj *impl_from_IHTMLEventObj4(IHTMLEventObj4 *iface) return CONTAINING_RECORD(iface, HTMLEventObj, IHTMLEventObj4_iface); }
-static HRESULT WINAPI HTMLEventObj4_QueryInterface(IHTMLEventObj4 *iface, REFIID riid, void **ppv) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj4(iface); - return IHTMLEventObj_QueryInterface(&This->IHTMLEventObj_iface, riid, ppv); -} - -static ULONG WINAPI HTMLEventObj4_AddRef(IHTMLEventObj4 *iface) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj4(iface); - return IHTMLEventObj_AddRef(&This->IHTMLEventObj_iface); -} - -static ULONG WINAPI HTMLEventObj4_Release(IHTMLEventObj4 *iface) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj4(iface); - return IHTMLEventObj_Release(&This->IHTMLEventObj_iface); -} - -static HRESULT WINAPI HTMLEventObj4_GetTypeInfoCount(IHTMLEventObj4 *iface, UINT *pctinfo) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj4(iface); - return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLEventObj4_GetTypeInfo(IHTMLEventObj4 *iface, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj4(iface); - return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLEventObj4_GetIDsOfNames(IHTMLEventObj4 *iface, REFIID riid,LPOLESTR *rgszNames, - UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj4(iface); - return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames, lcid, rgDispId); -} - -static HRESULT WINAPI HTMLEventObj4_Invoke(IHTMLEventObj4 *iface, DISPID dispIdMember, REFIID riid, LCID lcid, - WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj4(iface); - return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid, wFlags, pDispParams, - pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLEventObj4, IHTMLEventObj4, impl_from_IHTMLEventObj4(iface)->dispex)
static HRESULT WINAPI HTMLEventObj4_get_wheelDelta(IHTMLEventObj4 *iface, LONG *p) { @@ -1732,50 +1556,7 @@ static inline HTMLEventObj *impl_from_IHTMLEventObj5(IHTMLEventObj5 *iface) return CONTAINING_RECORD(iface, HTMLEventObj, IHTMLEventObj5_iface); }
-static HRESULT WINAPI HTMLEventObj5_QueryInterface(IHTMLEventObj5 *iface, REFIID riid, void **ppv) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj5(iface); - return IHTMLEventObj_QueryInterface(&This->IHTMLEventObj_iface, riid, ppv); -} - -static ULONG WINAPI HTMLEventObj5_AddRef(IHTMLEventObj5 *iface) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj5(iface); - return IHTMLEventObj_AddRef(&This->IHTMLEventObj_iface); -} - -static ULONG WINAPI HTMLEventObj5_Release(IHTMLEventObj5 *iface) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj5(iface); - return IHTMLEventObj_Release(&This->IHTMLEventObj_iface); -} - -static HRESULT WINAPI HTMLEventObj5_GetTypeInfoCount(IHTMLEventObj5 *iface, UINT *pctinfo) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj5(iface); - return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLEventObj5_GetTypeInfo(IHTMLEventObj5 *iface, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj5(iface); - return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLEventObj5_GetIDsOfNames(IHTMLEventObj5 *iface, REFIID riid,LPOLESTR *rgszNames, - UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj5(iface); - return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames, lcid, rgDispId); -} - -static HRESULT WINAPI HTMLEventObj5_Invoke(IHTMLEventObj5 *iface, DISPID dispIdMember, REFIID riid, LCID lcid, - WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj5(iface); - return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid, wFlags, pDispParams, - pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLEventObj5, IHTMLEventObj5, impl_from_IHTMLEventObj5(iface)->dispex)
static HRESULT WINAPI HTMLEventObj5_put_url(IHTMLEventObj5 *iface, BSTR v) { @@ -1934,50 +1715,7 @@ static inline HTMLEventObj *impl_from_IHTMLEventObj6(IHTMLEventObj6 *iface) return CONTAINING_RECORD(iface, HTMLEventObj, IHTMLEventObj6_iface); }
-static HRESULT WINAPI HTMLEventObj6_QueryInterface(IHTMLEventObj6 *iface, REFIID riid, void **ppv) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj6(iface); - return IHTMLEventObj_QueryInterface(&This->IHTMLEventObj_iface, riid, ppv); -} - -static ULONG WINAPI HTMLEventObj6_AddRef(IHTMLEventObj6 *iface) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj6(iface); - return IHTMLEventObj_AddRef(&This->IHTMLEventObj_iface); -} - -static ULONG WINAPI HTMLEventObj6_Release(IHTMLEventObj6 *iface) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj6(iface); - return IHTMLEventObj_Release(&This->IHTMLEventObj_iface); -} - -static HRESULT WINAPI HTMLEventObj6_GetTypeInfoCount(IHTMLEventObj6 *iface, UINT *pctinfo) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj6(iface); - return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLEventObj6_GetTypeInfo(IHTMLEventObj6 *iface, UINT iTInfo, LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj6(iface); - return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI HTMLEventObj6_GetIDsOfNames(IHTMLEventObj6 *iface, REFIID riid,LPOLESTR *rgszNames, - UINT cNames, LCID lcid, DISPID *rgDispId) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj6(iface); - return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames, lcid, rgDispId); -} - -static HRESULT WINAPI HTMLEventObj6_Invoke(IHTMLEventObj6 *iface, DISPID dispIdMember, REFIID riid, LCID lcid, - WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLEventObj *This = impl_from_IHTMLEventObj6(iface); - return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid, wFlags, pDispParams, - pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLEventObj6, IHTMLEventObj6, impl_from_IHTMLEventObj6(iface)->dispex)
static HRESULT WINAPI HTMLEventObj6_get_actionURL(IHTMLEventObj6 *iface, BSTR *p) {
From: Jacek Caban jacek@codeweavers.com
--- dlls/mshtml/htmlevent.c | 482 +--------------------------------------- 1 file changed, 12 insertions(+), 470 deletions(-)
diff --git a/dlls/mshtml/htmlevent.c b/dlls/mshtml/htmlevent.c index 8f2c916da18..f83153fc084 100644 --- a/dlls/mshtml/htmlevent.c +++ b/dlls/mshtml/htmlevent.c @@ -1861,53 +1861,7 @@ static inline DOMEvent *unsafe_impl_from_IDOMEvent(IDOMEvent *iface) return iface && iface->lpVtbl == &DOMEventVtbl ? impl_from_IDOMEvent(iface) : NULL; }
-static HRESULT WINAPI DOMEvent_QueryInterface(IDOMEvent *iface, REFIID riid, void **ppv) -{ - DOMEvent *This = impl_from_IDOMEvent(iface); - return IDispatchEx_QueryInterface(&This->dispex.IDispatchEx_iface, riid, ppv); -} - -static ULONG WINAPI DOMEvent_AddRef(IDOMEvent *iface) -{ - DOMEvent *This = impl_from_IDOMEvent(iface); - return IDispatchEx_AddRef(&This->dispex.IDispatchEx_iface); -} - -static ULONG WINAPI DOMEvent_Release(IDOMEvent *iface) -{ - DOMEvent *This = impl_from_IDOMEvent(iface); - return IDispatchEx_Release(&This->dispex.IDispatchEx_iface); -} - -static HRESULT WINAPI DOMEvent_GetTypeInfoCount(IDOMEvent *iface, UINT *pctinfo) -{ - DOMEvent *This = impl_from_IDOMEvent(iface); - return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI DOMEvent_GetTypeInfo(IDOMEvent *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - DOMEvent *This = impl_from_IDOMEvent(iface); - return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI DOMEvent_GetIDsOfNames(IDOMEvent *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - DOMEvent *This = impl_from_IDOMEvent(iface); - return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI DOMEvent_Invoke(IDOMEvent *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, - EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - DOMEvent *This = impl_from_IDOMEvent(iface); - return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(DOMEvent, IDOMEvent, impl_from_IDOMEvent(iface)->dispex)
static HRESULT WINAPI DOMEvent_get_bubbles(IDOMEvent *iface, VARIANT_BOOL *p) { @@ -2181,53 +2135,7 @@ static inline DOMUIEvent *impl_from_IDOMUIEvent(IDOMUIEvent *iface) return CONTAINING_RECORD(iface, DOMUIEvent, IDOMUIEvent_iface); }
-static HRESULT WINAPI DOMUIEvent_QueryInterface(IDOMUIEvent *iface, REFIID riid, void **ppv) -{ - DOMUIEvent *This = impl_from_IDOMUIEvent(iface); - return IDOMEvent_QueryInterface(&This->event.IDOMEvent_iface, riid, ppv); -} - -static ULONG WINAPI DOMUIEvent_AddRef(IDOMUIEvent *iface) -{ - DOMUIEvent *This = impl_from_IDOMUIEvent(iface); - return IDOMEvent_AddRef(&This->event.IDOMEvent_iface); -} - -static ULONG WINAPI DOMUIEvent_Release(IDOMUIEvent *iface) -{ - DOMUIEvent *This = impl_from_IDOMUIEvent(iface); - return IDOMEvent_Release(&This->event.IDOMEvent_iface); -} - -static HRESULT WINAPI DOMUIEvent_GetTypeInfoCount(IDOMUIEvent *iface, UINT *pctinfo) -{ - DOMUIEvent *This = impl_from_IDOMUIEvent(iface); - return IDispatchEx_GetTypeInfoCount(&This->event.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI DOMUIEvent_GetTypeInfo(IDOMUIEvent *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - DOMUIEvent *This = impl_from_IDOMUIEvent(iface); - return IDispatchEx_GetTypeInfo(&This->event.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI DOMUIEvent_GetIDsOfNames(IDOMUIEvent *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - DOMUIEvent *This = impl_from_IDOMUIEvent(iface); - return IDispatchEx_GetIDsOfNames(&This->event.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI DOMUIEvent_Invoke(IDOMUIEvent *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, - EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - DOMUIEvent *This = impl_from_IDOMUIEvent(iface); - return IDispatchEx_Invoke(&This->event.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(DOMUIEvent, IDOMUIEvent, impl_from_IDOMUIEvent(iface)->event.dispex)
static HRESULT WINAPI DOMUIEvent_get_view(IDOMUIEvent *iface, IHTMLWindow2 **p) { @@ -2351,53 +2259,7 @@ static inline DOMMouseEvent *impl_from_IDOMMouseEvent(IDOMMouseEvent *iface) return CONTAINING_RECORD(iface, DOMMouseEvent, IDOMMouseEvent_iface); }
-static HRESULT WINAPI DOMMouseEvent_QueryInterface(IDOMMouseEvent *iface, REFIID riid, void **ppv) -{ - DOMMouseEvent *This = impl_from_IDOMMouseEvent(iface); - return IDOMEvent_QueryInterface(&This->ui_event.event.IDOMEvent_iface, riid, ppv); -} - -static ULONG WINAPI DOMMouseEvent_AddRef(IDOMMouseEvent *iface) -{ - DOMMouseEvent *This = impl_from_IDOMMouseEvent(iface); - return IDOMEvent_AddRef(&This->ui_event.event.IDOMEvent_iface); -} - -static ULONG WINAPI DOMMouseEvent_Release(IDOMMouseEvent *iface) -{ - DOMMouseEvent *This = impl_from_IDOMMouseEvent(iface); - return IDOMEvent_Release(&This->ui_event.event.IDOMEvent_iface); -} - -static HRESULT WINAPI DOMMouseEvent_GetTypeInfoCount(IDOMMouseEvent *iface, UINT *pctinfo) -{ - DOMMouseEvent *This = impl_from_IDOMMouseEvent(iface); - return IDispatchEx_GetTypeInfoCount(&This->ui_event.event.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI DOMMouseEvent_GetTypeInfo(IDOMMouseEvent *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - DOMMouseEvent *This = impl_from_IDOMMouseEvent(iface); - return IDispatchEx_GetTypeInfo(&This->ui_event.event.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI DOMMouseEvent_GetIDsOfNames(IDOMMouseEvent *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - DOMMouseEvent *This = impl_from_IDOMMouseEvent(iface); - return IDispatchEx_GetIDsOfNames(&This->ui_event.event.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI DOMMouseEvent_Invoke(IDOMMouseEvent *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, - EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - DOMMouseEvent *This = impl_from_IDOMMouseEvent(iface); - return IDispatchEx_Invoke(&This->ui_event.event.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(DOMMouseEvent, IDOMMouseEvent, impl_from_IDOMMouseEvent(iface)->ui_event.event.dispex)
static HRESULT WINAPI DOMMouseEvent_get_screenX(IDOMMouseEvent *iface, LONG *p) { @@ -2892,53 +2754,8 @@ static inline DOMKeyboardEvent *impl_from_IDOMKeyboardEvent(IDOMKeyboardEvent *i return CONTAINING_RECORD(iface, DOMKeyboardEvent, IDOMKeyboardEvent_iface); }
-static HRESULT WINAPI DOMKeyboardEvent_QueryInterface(IDOMKeyboardEvent *iface, REFIID riid, void **ppv) -{ - DOMKeyboardEvent *This = impl_from_IDOMKeyboardEvent(iface); - return IDOMEvent_QueryInterface(&This->ui_event.event.IDOMEvent_iface, riid, ppv); -} - -static ULONG WINAPI DOMKeyboardEvent_AddRef(IDOMKeyboardEvent *iface) -{ - DOMKeyboardEvent *This = impl_from_IDOMKeyboardEvent(iface); - return IDOMEvent_AddRef(&This->ui_event.event.IDOMEvent_iface); -} - -static ULONG WINAPI DOMKeyboardEvent_Release(IDOMKeyboardEvent *iface) -{ - DOMKeyboardEvent *This = impl_from_IDOMKeyboardEvent(iface); - return IDOMEvent_Release(&This->ui_event.event.IDOMEvent_iface); -} - -static HRESULT WINAPI DOMKeyboardEvent_GetTypeInfoCount(IDOMKeyboardEvent *iface, UINT *pctinfo) -{ - DOMKeyboardEvent *This = impl_from_IDOMKeyboardEvent(iface); - return IDispatchEx_GetTypeInfoCount(&This->ui_event.event.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI DOMKeyboardEvent_GetTypeInfo(IDOMKeyboardEvent *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - DOMKeyboardEvent *This = impl_from_IDOMKeyboardEvent(iface); - return IDispatchEx_GetTypeInfo(&This->ui_event.event.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI DOMKeyboardEvent_GetIDsOfNames(IDOMKeyboardEvent *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - DOMKeyboardEvent *This = impl_from_IDOMKeyboardEvent(iface); - return IDispatchEx_GetIDsOfNames(&This->ui_event.event.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI DOMKeyboardEvent_Invoke(IDOMKeyboardEvent *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, - EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - DOMKeyboardEvent *This = impl_from_IDOMKeyboardEvent(iface); - return IDispatchEx_Invoke(&This->ui_event.event.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(DOMKeyboardEvent, IDOMKeyboardEvent, + impl_from_IDOMKeyboardEvent(iface)->ui_event.event.dispex)
static HRESULT WINAPI DOMKeyboardEvent_get_key(IDOMKeyboardEvent *iface, BSTR *p) { @@ -3199,53 +3016,8 @@ static inline DOMPageTransitionEvent *impl_from_IWinePageTransitionEvent(IWinePa return CONTAINING_RECORD(iface, DOMPageTransitionEvent, IWinePageTransitionEvent_iface); }
-static HRESULT WINAPI DOMPageTransitionEvent_QueryInterface(IWinePageTransitionEvent *iface, REFIID riid, void **ppv) -{ - DOMPageTransitionEvent *This = impl_from_IWinePageTransitionEvent(iface); - return IDOMEvent_QueryInterface(&This->event.IDOMEvent_iface, riid, ppv); -} - -static ULONG WINAPI DOMPageTransitionEvent_AddRef(IWinePageTransitionEvent *iface) -{ - DOMPageTransitionEvent *This = impl_from_IWinePageTransitionEvent(iface); - return IDOMEvent_AddRef(&This->event.IDOMEvent_iface); -} - -static ULONG WINAPI DOMPageTransitionEvent_Release(IWinePageTransitionEvent *iface) -{ - DOMPageTransitionEvent *This = impl_from_IWinePageTransitionEvent(iface); - return IDOMEvent_Release(&This->event.IDOMEvent_iface); -} - -static HRESULT WINAPI DOMPageTransitionEvent_GetTypeInfoCount(IWinePageTransitionEvent *iface, UINT *pctinfo) -{ - DOMPageTransitionEvent *This = impl_from_IWinePageTransitionEvent(iface); - return IDispatchEx_GetTypeInfoCount(&This->event.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI DOMPageTransitionEvent_GetTypeInfo(IWinePageTransitionEvent *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - DOMPageTransitionEvent *This = impl_from_IWinePageTransitionEvent(iface); - return IDispatchEx_GetTypeInfo(&This->event.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI DOMPageTransitionEvent_GetIDsOfNames(IWinePageTransitionEvent *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - DOMPageTransitionEvent *This = impl_from_IWinePageTransitionEvent(iface); - return IDispatchEx_GetIDsOfNames(&This->event.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI DOMPageTransitionEvent_Invoke(IWinePageTransitionEvent *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, - EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - DOMPageTransitionEvent *This = impl_from_IWinePageTransitionEvent(iface); - return IDispatchEx_Invoke(&This->event.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(DOMPageTransitionEvent, IWinePageTransitionEvent, + impl_from_IWinePageTransitionEvent(iface)->event.dispex)
static HRESULT WINAPI DOMPageTransitionEvent_get_persisted(IWinePageTransitionEvent *iface, VARIANT_BOOL *p) { @@ -3293,53 +3065,7 @@ static inline DOMCustomEvent *impl_from_IDOMCustomEvent(IDOMCustomEvent *iface) return CONTAINING_RECORD(iface, DOMCustomEvent, IDOMCustomEvent_iface); }
-static HRESULT WINAPI DOMCustomEvent_QueryInterface(IDOMCustomEvent *iface, REFIID riid, void **ppv) -{ - DOMCustomEvent *This = impl_from_IDOMCustomEvent(iface); - return IDOMEvent_QueryInterface(&This->event.IDOMEvent_iface, riid, ppv); -} - -static ULONG WINAPI DOMCustomEvent_AddRef(IDOMCustomEvent *iface) -{ - DOMCustomEvent *This = impl_from_IDOMCustomEvent(iface); - return IDOMEvent_AddRef(&This->event.IDOMEvent_iface); -} - -static ULONG WINAPI DOMCustomEvent_Release(IDOMCustomEvent *iface) -{ - DOMCustomEvent *This = impl_from_IDOMCustomEvent(iface); - return IDOMEvent_Release(&This->event.IDOMEvent_iface); -} - -static HRESULT WINAPI DOMCustomEvent_GetTypeInfoCount(IDOMCustomEvent *iface, UINT *pctinfo) -{ - DOMCustomEvent *This = impl_from_IDOMCustomEvent(iface); - return IDispatchEx_GetTypeInfoCount(&This->event.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI DOMCustomEvent_GetTypeInfo(IDOMCustomEvent *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - DOMCustomEvent *This = impl_from_IDOMCustomEvent(iface); - return IDispatchEx_GetTypeInfo(&This->event.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI DOMCustomEvent_GetIDsOfNames(IDOMCustomEvent *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - DOMCustomEvent *This = impl_from_IDOMCustomEvent(iface); - return IDispatchEx_GetIDsOfNames(&This->event.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI DOMCustomEvent_Invoke(IDOMCustomEvent *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, - EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - DOMCustomEvent *This = impl_from_IDOMCustomEvent(iface); - return IDispatchEx_Invoke(&This->event.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(DOMCustomEvent, IDOMCustomEvent, impl_from_IDOMCustomEvent(iface)->event.dispex)
static HRESULT WINAPI DOMCustomEvent_get_detail(IDOMCustomEvent *iface, VARIANT *p) { @@ -3426,53 +3152,7 @@ static inline DOMMessageEvent *impl_from_IDOMMessageEvent(IDOMMessageEvent *ifac return CONTAINING_RECORD(iface, DOMMessageEvent, IDOMMessageEvent_iface); }
-static HRESULT WINAPI DOMMessageEvent_QueryInterface(IDOMMessageEvent *iface, REFIID riid, void **ppv) -{ - DOMMessageEvent *This = impl_from_IDOMMessageEvent(iface); - return IDOMEvent_QueryInterface(&This->event.IDOMEvent_iface, riid, ppv); -} - -static ULONG WINAPI DOMMessageEvent_AddRef(IDOMMessageEvent *iface) -{ - DOMMessageEvent *This = impl_from_IDOMMessageEvent(iface); - return IDOMEvent_AddRef(&This->event.IDOMEvent_iface); -} - -static ULONG WINAPI DOMMessageEvent_Release(IDOMMessageEvent *iface) -{ - DOMMessageEvent *This = impl_from_IDOMMessageEvent(iface); - return IDOMEvent_Release(&This->event.IDOMEvent_iface); -} - -static HRESULT WINAPI DOMMessageEvent_GetTypeInfoCount(IDOMMessageEvent *iface, UINT *pctinfo) -{ - DOMMessageEvent *This = impl_from_IDOMMessageEvent(iface); - return IDispatchEx_GetTypeInfoCount(&This->event.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI DOMMessageEvent_GetTypeInfo(IDOMMessageEvent *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - DOMMessageEvent *This = impl_from_IDOMMessageEvent(iface); - return IDispatchEx_GetTypeInfo(&This->event.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI DOMMessageEvent_GetIDsOfNames(IDOMMessageEvent *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - DOMMessageEvent *This = impl_from_IDOMMessageEvent(iface); - return IDispatchEx_GetIDsOfNames(&This->event.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI DOMMessageEvent_Invoke(IDOMMessageEvent *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, - EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - DOMMessageEvent *This = impl_from_IDOMMessageEvent(iface); - return IDispatchEx_Invoke(&This->event.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(DOMMessageEvent, IDOMMessageEvent, impl_from_IDOMMessageEvent(iface)->event.dispex)
static HRESULT WINAPI DOMMessageEvent_get_data(IDOMMessageEvent *iface, BSTR *p) { @@ -3654,53 +3334,7 @@ static inline DOMProgressEvent *impl_from_IDOMProgressEvent(IDOMProgressEvent *i return CONTAINING_RECORD(iface, DOMProgressEvent, IDOMProgressEvent_iface); }
-static HRESULT WINAPI DOMProgressEvent_QueryInterface(IDOMProgressEvent *iface, REFIID riid, void **ppv) -{ - DOMProgressEvent *This = impl_from_IDOMProgressEvent(iface); - return IDOMEvent_QueryInterface(&This->event.IDOMEvent_iface, riid, ppv); -} - -static ULONG WINAPI DOMProgressEvent_AddRef(IDOMProgressEvent *iface) -{ - DOMProgressEvent *This = impl_from_IDOMProgressEvent(iface); - return IDOMEvent_AddRef(&This->event.IDOMEvent_iface); -} - -static ULONG WINAPI DOMProgressEvent_Release(IDOMProgressEvent *iface) -{ - DOMProgressEvent *This = impl_from_IDOMProgressEvent(iface); - return IDOMEvent_Release(&This->event.IDOMEvent_iface); -} - -static HRESULT WINAPI DOMProgressEvent_GetTypeInfoCount(IDOMProgressEvent *iface, UINT *pctinfo) -{ - DOMProgressEvent *This = impl_from_IDOMProgressEvent(iface); - return IDispatchEx_GetTypeInfoCount(&This->event.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI DOMProgressEvent_GetTypeInfo(IDOMProgressEvent *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - DOMProgressEvent *This = impl_from_IDOMProgressEvent(iface); - return IDispatchEx_GetTypeInfo(&This->event.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI DOMProgressEvent_GetIDsOfNames(IDOMProgressEvent *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - DOMProgressEvent *This = impl_from_IDOMProgressEvent(iface); - return IDispatchEx_GetIDsOfNames(&This->event.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI DOMProgressEvent_Invoke(IDOMProgressEvent *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, - EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - DOMProgressEvent *This = impl_from_IDOMProgressEvent(iface); - return IDispatchEx_Invoke(&This->event.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(DOMProgressEvent, IDOMProgressEvent, impl_from_IDOMProgressEvent(iface)->event.dispex)
static HRESULT WINAPI DOMProgressEvent_get_lengthComputable(IDOMProgressEvent *iface, VARIANT_BOOL *p) { @@ -3821,53 +3455,7 @@ static inline DOMStorageEvent *impl_from_IDOMStorageEvent(IDOMStorageEvent *ifac return CONTAINING_RECORD(iface, DOMStorageEvent, IDOMStorageEvent_iface); }
-static HRESULT WINAPI DOMStorageEvent_QueryInterface(IDOMStorageEvent *iface, REFIID riid, void **ppv) -{ - DOMStorageEvent *This = impl_from_IDOMStorageEvent(iface); - return IDOMEvent_QueryInterface(&This->event.IDOMEvent_iface, riid, ppv); -} - -static ULONG WINAPI DOMStorageEvent_AddRef(IDOMStorageEvent *iface) -{ - DOMStorageEvent *This = impl_from_IDOMStorageEvent(iface); - return IDOMEvent_AddRef(&This->event.IDOMEvent_iface); -} - -static ULONG WINAPI DOMStorageEvent_Release(IDOMStorageEvent *iface) -{ - DOMStorageEvent *This = impl_from_IDOMStorageEvent(iface); - return IDOMEvent_Release(&This->event.IDOMEvent_iface); -} - -static HRESULT WINAPI DOMStorageEvent_GetTypeInfoCount(IDOMStorageEvent *iface, UINT *pctinfo) -{ - DOMStorageEvent *This = impl_from_IDOMStorageEvent(iface); - return IDispatchEx_GetTypeInfoCount(&This->event.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI DOMStorageEvent_GetTypeInfo(IDOMStorageEvent *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - DOMStorageEvent *This = impl_from_IDOMStorageEvent(iface); - return IDispatchEx_GetTypeInfo(&This->event.dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI DOMStorageEvent_GetIDsOfNames(IDOMStorageEvent *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) -{ - DOMStorageEvent *This = impl_from_IDOMStorageEvent(iface); - return IDispatchEx_GetIDsOfNames(&This->event.dispex.IDispatchEx_iface, riid, rgszNames, cNames, - lcid, rgDispId); -} - -static HRESULT WINAPI DOMStorageEvent_Invoke(IDOMStorageEvent *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pVarResult, - EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - DOMStorageEvent *This = impl_from_IDOMStorageEvent(iface); - return IDispatchEx_Invoke(&This->event.dispex.IDispatchEx_iface, dispIdMember, riid, lcid, - wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(DOMStorageEvent, IDOMStorageEvent, impl_from_IDOMStorageEvent(iface)->event.dispex)
static HRESULT WINAPI DOMStorageEvent_get_key(IDOMStorageEvent *iface, BSTR *p) { @@ -5361,53 +4949,7 @@ static inline EventTarget *impl_from_IEventTarget(IEventTarget *iface) return CONTAINING_RECORD(iface, EventTarget, IEventTarget_iface); }
-static HRESULT WINAPI EventTarget_QueryInterface(IEventTarget *iface, REFIID riid, void **ppv) -{ - EventTarget *This = impl_from_IEventTarget(iface); - return IDispatchEx_QueryInterface(&This->dispex.IDispatchEx_iface, riid, ppv); -} - -static ULONG WINAPI EventTarget_AddRef(IEventTarget *iface) -{ - EventTarget *This = impl_from_IEventTarget(iface); - return IDispatchEx_AddRef(&This->dispex.IDispatchEx_iface); -} - -static ULONG WINAPI EventTarget_Release(IEventTarget *iface) -{ - EventTarget *This = impl_from_IEventTarget(iface); - return IDispatchEx_Release(&This->dispex.IDispatchEx_iface); -} - -static HRESULT WINAPI EventTarget_GetTypeInfoCount(IEventTarget *iface, UINT *pctinfo) -{ - EventTarget *This = impl_from_IEventTarget(iface); - return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI EventTarget_GetTypeInfo(IEventTarget *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - EventTarget *This = impl_from_IEventTarget(iface); - return IDispatchEx_GetTypeInfo(&This->dispex.IDispatchEx_iface, iTInfo, lcid, ppTInfo); -} - -static HRESULT WINAPI EventTarget_GetIDsOfNames(IEventTarget *iface, REFIID riid, LPOLESTR *rgszNames, - UINT cNames, LCID lcid, DISPID *rgDispId) -{ - EventTarget *This = impl_from_IEventTarget(iface); - return IDispatchEx_GetIDsOfNames(&This->dispex.IDispatchEx_iface, riid, - rgszNames, cNames, lcid, rgDispId); -} - -static HRESULT WINAPI EventTarget_Invoke(IEventTarget *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, - VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - EventTarget *This = impl_from_IEventTarget(iface); - return IDispatchEx_Invoke(&This->dispex.IDispatchEx_iface, dispIdMember, - riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(EventTarget, IEventTarget, impl_from_IEventTarget(iface)->dispex)
static HRESULT WINAPI EventTarget_addEventListener(IEventTarget *iface, BSTR type, IDispatch *function, VARIANT_BOOL capture)
From: Jacek Caban jacek@codeweavers.com
--- dlls/mshtml/htmlform.c | 55 ++---------------------------------------- 1 file changed, 2 insertions(+), 53 deletions(-)
diff --git a/dlls/mshtml/htmlform.c b/dlls/mshtml/htmlform.c index 648e1efa6b5..7be9c1c95d7 100644 --- a/dlls/mshtml/htmlform.c +++ b/dlls/mshtml/htmlform.c @@ -251,59 +251,8 @@ static inline HTMLFormElement *impl_from_IHTMLFormElement(IHTMLFormElement *ifac return CONTAINING_RECORD(iface, HTMLFormElement, IHTMLFormElement_iface); }
-static HRESULT WINAPI HTMLFormElement_QueryInterface(IHTMLFormElement *iface, - REFIID riid, void **ppv) -{ - HTMLFormElement *This = impl_from_IHTMLFormElement(iface); - - return IHTMLDOMNode_QueryInterface(&This->element.node.IHTMLDOMNode_iface, riid, ppv); -} - -static ULONG WINAPI HTMLFormElement_AddRef(IHTMLFormElement *iface) -{ - HTMLFormElement *This = impl_from_IHTMLFormElement(iface); - - return IHTMLDOMNode_AddRef(&This->element.node.IHTMLDOMNode_iface); -} - -static ULONG WINAPI HTMLFormElement_Release(IHTMLFormElement *iface) -{ - HTMLFormElement *This = impl_from_IHTMLFormElement(iface); - - return IHTMLDOMNode_Release(&This->element.node.IHTMLDOMNode_iface); -} - -static HRESULT WINAPI HTMLFormElement_GetTypeInfoCount(IHTMLFormElement *iface, UINT *pctinfo) -{ - HTMLFormElement *This = impl_from_IHTMLFormElement(iface); - return IDispatchEx_GetTypeInfoCount(&This->element.node.event_target.dispex.IDispatchEx_iface, pctinfo); -} - -static HRESULT WINAPI HTMLFormElement_GetTypeInfo(IHTMLFormElement *iface, UINT iTInfo, - LCID lcid, ITypeInfo **ppTInfo) -{ - HTMLFormElement *This = impl_from_IHTMLFormElement(iface); - return IDispatchEx_GetTypeInfo(&This->element.node.event_target.dispex.IDispatchEx_iface, iTInfo, lcid, - ppTInfo); -} - -static HRESULT WINAPI HTMLFormElement_GetIDsOfNames(IHTMLFormElement *iface, REFIID riid, - LPOLESTR *rgszNames, UINT cNames, - LCID lcid, DISPID *rgDispId) -{ - HTMLFormElement *This = impl_from_IHTMLFormElement(iface); - return IDispatchEx_GetIDsOfNames(&This->element.node.event_target.dispex.IDispatchEx_iface, riid, rgszNames, - cNames, lcid, rgDispId); -} - -static HRESULT WINAPI HTMLFormElement_Invoke(IHTMLFormElement *iface, DISPID dispIdMember, - REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, - VARIANT *pVarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) -{ - HTMLFormElement *This = impl_from_IHTMLFormElement(iface); - return IDispatchEx_Invoke(&This->element.node.event_target.dispex.IDispatchEx_iface, dispIdMember, riid, - lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); -} +DISPEX_IDISPATCH_IMPL(HTMLFormElement, IHTMLFormElement, + impl_from_IHTMLFormElement(iface)->element.node.event_target.dispex)
static HRESULT WINAPI HTMLFormElement_put_action(IHTMLFormElement *iface, BSTR v) {
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=145586
Your paranoid android.
=== debian11b (64 bit WoW report) ===
d2d1: d2d1.c:4124: Test failed: Surface does not match.
d3d10core: d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 1. 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 {0.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 1. d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), 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: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: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: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:6319: Test failed: Got unexpected color 0x00ff0000. d3d10core.c:8698: Test failed: Got 0xff0000ff, expected 0xffffffff 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 {1.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 4. 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: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 {3.00000000e+000, 1.00000000e+001, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 5. d3d10core.c:8700: Test failed: Got 0xff0000ff, expected 0x33333333 at (0, 0), sub-resource 0. 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:8551: Test failed: Layer 1, 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, 9.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 8. 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:8712: Test failed: Got 0xff0000ff, expected 0xffffffff at (0, 0), sub-resource 0. 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:8257: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:6753: Test failed: Test 7: Got unexpected color 0x800000ff at (0). 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:6753: Test failed: Test 7: Got unexpected color 0x800000ff at (1). d3d10core.c:6753: Test failed: Test 7: Got unexpected color 0x800000ff at (2). d3d10core.c:6753: Test failed: Test 7: Got unexpected color 0x800000ff at (3). 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 {2.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:9556: 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: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: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: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: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 {4.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 13. 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 {3.00000000e+000, 7.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 14. 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:8296: Test failed: Got 0.00000000e+000, expected 1.00000000e+002 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 {5.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 16. d3d10core.c:9840: 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 {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 {3.00000000e+000, 6.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 17. d3d10core.c:8301: Test failed: Got 0.00000000e+000, expected 2.55000000e+002 at (0, 0), sub-resource 0. 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:8551: Test failed: Layer 2, ref 0.000000: 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 {6.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 18. 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:9577: Test failed: Got unexpected color 0x800000ff. d3d10core.c:9867: Test failed: Got unexpected color 0x800000ff at (2, 0), expected 0xffffffff. d3d10core.c:9867: Test failed: Got unexpected color 0x800000ff at (0, 1), expected 0xff00ff00. d3d10core.c:9579: Test failed: Got unexpected color 0x800000ff. d3d10core.c:9867: Test failed: Got unexpected color 0x800000ff at (0, 2), expected 0xffffff00. d3d10core.c:9867: Test failed: Got unexpected color 0x800000ff at (3, 2), expected 0x00000000. d3d10core.c:9867: Test failed: Got unexpected color 0x800000ff at (0, 3), expected 0xff000000. 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:9867: Test failed: Got unexpected color 0x800000ff at (1, 3), expected 0xff7f7f7f. d3d10core.c:9867: Test failed: Got unexpected color 0x800000ff at (2, 3), expected 0xffffffff. d3d10core.c:8310: Test failed: Got 0.00000000e+000, expected 3.29999995e+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 {6.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 19. d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff 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 {7.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, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 21. d3d10core.c:8315: Test failed: Got 0.00000000e+000, expected 4.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:10817: Test failed: Got unexpected color 0xffffffff for index 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: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:8551: Test failed: Layer 4, ref 0.000000: 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, 4.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 23. 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 2. d3d10core.c:10933: 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.00000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. 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:8231: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:10933: Test failed: Got 0xffffffff, expected 0xffff0000 at (0, 0), sub-resource 0. d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 1. d3d10core.c:10817: Test failed: Got unexpected color 0xffffffff for index 4. d3d10core.c:10933: Test failed: Got 0xffffffff, expected 0xff0f0f0f at (0, 0), sub-resource 0. d3d10core.c:10817: Test failed: Got unexpected color 0xffffffff for index 5. d3d10core.c:10155: Test failed: Got 0x800000ff, expected 0x00000000 at (0, 0), sub-resource 0. 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:11238: Test failed: Got unexpected color 0x00000000. 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:8551: Test failed: Layer 3, ref 1.000000: Got 5.00000000e-001, expected 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: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:11608: Test failed: Got 5.00000000e-001, expected 4.00000006e-001 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: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: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:11252: Test failed: Got unexpected color 0x00000000. d3d10core.c:11254: Test failed: Got unexpected color 0x00000000. 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 {3.00000000e+000, 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:12172: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:12264: 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 3. d3d10core.c:12385: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:12172: 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 {7.00000000e+000, 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 {8.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: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 {9.00000000e+000, 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.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:13592: Test failed: Got 0xff00ff00, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:13718: Test failed: Got 0x8000ff00, 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:13725: Test failed: Got 0xcc0000ff, expected 0x7f00ff00 at (0, 0), sub-resource 0. d3d10core.c:12474: Test failed: Got 0xffffffff, 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.60000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d10core.c:13729: Test failed: Got 0x8000ff00, expected 0xcc0000ff 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: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:12177: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:12172: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:13622: Test failed: Got 0xff0000ff, expected 0xff00ff00 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:14358: Test failed: Got 0x00000000, expected 0xffffffff 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: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:13622: Test failed: Got 0xff00ff00, expected 0xff0000ff 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:14368: Test failed: Got 0x00000000, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:13617: Test failed: Got 0xff0000ff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:15300: Test failed: Got unexpected color 0xff0000ff. d3d10core.c:14517: Test failed: Got 0x00000000, expected 0xff0000ff at (400, 0), sub-resource 0. d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 2. d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xff0000ff at (0, 0). d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xff0000ff at (1, 0). d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xff00ffff at (2, 0). d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xff00ffff at (3, 0). d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xff0000ff at (0, 1). d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xff0000ff at (1, 1). d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xff00ffff at (2, 1). d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xff00ffff at (3, 1). d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xff00ff00 at (0, 2). d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xff00ff00 at (1, 2). d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xffffff00 at (2, 2). d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xffffff00 at (3, 2). d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xff00ff00 at (0, 3). d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xff00ff00 at (1, 3). d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xffffff00 at (2, 3). d3d10core.c:15093: Test failed: Test 2: Got 0x800000ff, expected 0xffffff00 at (3, 3). d3d10core.c:8231: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d10core.c:14378: Test failed: Got 0x00000000, expected 0xffffffff at (0, 0), sub-resource 0. d3d10core.c:15791: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:3286: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0), sub-resource 1. d3d10core.c:13643: Test failed: Got 0xffff0000, expected 0xff00ff00 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:15796: Test failed: Got 0xffffffff, expected 0xff0000ff at (0, 0), sub-resource 0. d3d10core.c:13648: Test failed: Got 0xff00ff00, expected 0xffff0000 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:15800: Test failed: Got 0xffffffff, expected 0xff0000ff 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: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:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000de at (1, 1). d3d10core.c:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ad at (2, 1). d3d10core.c:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ad at (3, 1). d3d10core.c:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ba at (0, 2). d3d10core.c:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ba at (1, 2). d3d10core.c:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000be at (2, 2). d3d10core.c:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000be at (3, 2). d3d10core.c:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ba at (0, 3). d3d10core.c:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000ba at (1, 3). d3d10core.c:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000be at (2, 3). d3d10core.c:15093: Test failed: Test 6: Got 0x800000ff, expected 0xff0000be at (3, 3). d3d10core.c:13664: Test failed: Got 0xff00ff00, expected 0xffff0000 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 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: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:17849: Test failed: Got 0xffffffff, expected 0x00000000 at (0, 0), sub-resource 0. d3d10core.c:13670: Test failed: Got 0xffff0000, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:17849: Test failed: Got 0xffffffff, expected 0x00000000 at (0, 0), sub-resource 0. d3d10core.c:17697: Test failed: Got 0xffffffff, expected 0xffff0000 at (0, 0), sub-resource 0. d3d10core.c:17700: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 200), sub-resource 0. d3d10core.c:17703: Test succeeded inside todo block: Got 0xffffffff, expected 0xffffffff at (640, 480), sub-resource 0. d3d10core.c:18367: Test failed: Got 0x00000000, expected 0xbfbfbfbf at (0, 0), sub-resource 0. d3d10core.c:18299: Test failed: Got 0xffffffff, expected 0xff80ff80 at (0, 0), sub-resource 0. d3d10core.c:18557: Test failed: Got 0x00, expected 0xff at (0, 0), sub-resource 0. d3d10core.c:18031: 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. d3d10core.c:18299: Test failed: Got 0xffffffff, expected 0xffbcffbc at (0, 0), sub-resource 0. d3d10core.c:18563: Test failed: Got 0x00000000, expected 0xff7f4000 at (0, 0), sub-resource 0. d3d10core.c:17750: 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:4831: Test failed: Got unexpected query result 0x0000000000000000. d3d10core.c:17750: Test failed: Got 0xffffffff, expected 0x8000ff00 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:18410: Test failed: Got 1.00000000e+000, expected 5.00000000e-001 at (0, 0), sub-resource 0. d3d10core.c:18557: Test failed: Got 0x00, expected 0xff at (0, 0), sub-resource 0. d3d10core.c:16997: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. d3d10core.c:18563: Test failed: Got 0x00000000, expected 0xff7f4000 at (0, 0), sub-resource 0. d3d10core.c:18745: Test failed: 0: 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: 1: Got unexpected color 0xff0000ff. d3d10core.c:17010: 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:18412: Test failed: Got 1.00000000e+000, expected 5.00000000e-001 at (0, 0), sub-resource 0. d3d10core.c:18745: Test failed: 2: 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:18745: Test failed: 3: Got unexpected color 0xff0000ff. d3d10core.c:18745: Test failed: 4: Got unexpected color 0xff0000ff. d3d10core.c:19161: Test failed: Got unexpected colour 0x00000000 at (0, 0, 0), expected 0xff000000. d3d10core.c:18432: Test failed: Got 1.00000000e+000, expected 6.00000024e-001 at (0, 0), sub-resource 0. d3d10core.c:18855: Test failed: 2: Got unexpected color 0xff0000ff. d3d10core.c:18855: Test failed: 3: 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:18299: Test failed: Got 0xffffffff, expected 0xffbcffbc at (0, 0), sub-resource 0. d3d10core.c:18855: Test failed: 4: Got unexpected color 0xff0000ff. d3d10core.c:18855: Test failed: 5: Got unexpected color 0xff0000ff. d3d10core.c:18855: Test failed: 6: Got unexpected color 0xff0000ff. d3d10core.c:18855: Test failed: 7: Got unexpected color 0xff0000ff. d3d10core.c:19704: Test failed: Got unexpected colour 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: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: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:18299: Test failed: Got 0xffffffff, expected 0xfff1e1cf at (0, 0), sub-resource 0. 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:18299: Test failed: Got 0xffffffff, expected 0xff80ff80 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: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: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 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:18299: Test failed: Got 0xffffffff, expected 0xffdfc0a0 at (0, 0), sub-resource 0. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 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: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:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 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:17189: Test failed: Got unexpected color 0xffffffff. d3d10core.c:17181: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0), sub-resource 0. 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:18299: Test failed: Got 0xffffffff, expected 0xfff0dec4 at (0, 0), sub-resource 0. d3d10core.c:17187: Test failed: Got unexpected color 0xffffffff. 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:17189: 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: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: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: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:8660: Test failed: Got unexpected colour 0x00ff0000. 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:9101: Test failed: Test 2: Got unexpected colour 0x800000ff at (0). d3d11.c:9101: Test failed: Test 2: Got unexpected colour 0x800000ff at (1). d3d11.c:9101: Test failed: Test 2: Got unexpected colour 0x800000ff at (2). d3d11.c:9101: Test failed: Test 2: Got unexpected colour 0x800000ff at (3). d3d11.c:8662: Test failed: Got unexpected colour 0x00ff0000. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:11299: Test failed: Got 0xff0000ff, 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 {3.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 0.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:9101: Test failed: Test 4: Got unexpected colour 0x800000ff at (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 {4.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 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 {5.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:11947: 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:11949: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 1. d3d11.c:11953: 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 {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:10772: Test failed: Got 0.00000000e+000, expected 1.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:11093: Test failed: Got 5.00000000e-001, expected 0.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: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:14154: Test failed: Got colour 0x800000ff at (0, 0), expected 0xffffffff. d3d11.c:14154: Test failed: Got colour 0x800000ff at (1, 0), expected 0xff000000. d3d11.c:14154: Test failed: Got colour 0x800000ff at (2, 0), expected 0xffffffff. d3d11.c:14154: Test failed: Got colour 0x800000ff at (3, 0), expected 0xff000000. d3d11.c:14154: Test failed: Got colour 0x800000ff at (0, 1), expected 0xff00ff00. d3d11.c:14154: Test failed: Got colour 0x800000ff at (1, 1), expected 0xff0000ff. d3d11.c:14154: Test failed: Got colour 0x800000ff at (2, 1), expected 0xff00ffff. d3d11.c:14154: Test failed: Got colour 0x800000ff at (3, 1), expected 0x00000000. d3d11.c:14154: Test failed: Got colour 0x800000ff at (0, 2), expected 0xffffff00. d3d11.c:14154: Test failed: Got colour 0x800000ff at (1, 2), expected 0xffff0000. d3d11.c:14154: Test failed: Got colour 0x800000ff at (2, 2), expected 0xffff00ff. d3d11.c:14154: Test failed: Got colour 0x800000ff at (3, 2), expected 0x00000000. d3d11.c:14154: Test failed: Got colour 0x800000ff at (0, 3), expected 0xff000000. d3d11.c:14154: Test failed: Got colour 0x800000ff at (1, 3), expected 0xff7f7f7f. d3d11.c:14154: Test failed: Got colour 0x800000ff at (2, 3), expected 0xffffffff. d3d11.c:14154: Test failed: Got colour 0x800000ff at (3, 3), expected 0x00000000. 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: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:10810: Test failed: Got 0.00000000e+000, expected 1.00000000e+002 at (0, 0), sub-resource 0. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 1. 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 {6.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:14340: Test failed: Got 0x800000ff, expected 0x00000000 at (0, 0, 0), sub-resource 0. d3d11.c:10824: Test failed: Got 0.00000000e+000, expected 3.29999995e+000 at (0, 0), sub-resource 0. d3d11.c:11978: 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: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:11982: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:11984: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:10829: Test failed: Got 0.00000000e+000, expected 4.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 {1.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 4. 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: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 (3, 2), expected 0xff7f7f7f. d3d11.c:14686: Test failed: Got colour 0x800000ff at (0, 3), expected 0xffffffff. d3d11.c:14686: Test failed: Got colour 0x800000ff at (1, 3), expected 0xffffffff. d3d11.c:14686: Test failed: Got colour 0x800000ff at (2, 3), expected 0xff000000. d3d11.c:14686: Test failed: Got colour 0x800000ff at (3, 3), expected 0x00000000. d3d11.c:14383: Test failed: Got colour 0x800000ff at (0, 0), expected 0xff0000ff. d3d11.c:14383: Test failed: Got colour 0x800000ff at (1, 0), expected 0xff00ffff. d3d11.c:14383: Test failed: Got colour 0x800000ff at (2, 0), expected 0xff00ff00. d3d11.c:14383: Test failed: Got colour 0x800000ff at (3, 0), expected 0xffffff00. d3d11.c:14383: Test failed: Got colour 0x800000ff at (0, 1), expected 0xffff0000. d3d11.c:14383: Test failed: Got colour 0x800000ff at (1, 1), expected 0xffff00ff. d3d11.c:14383: Test failed: Got colour 0x800000ff at (2, 1), expected 0xff000000. d3d11.c:14383: Test failed: Got colour 0x800000ff at (3, 1), expected 0xff7f7f7f. d3d11.c:14383: Test failed: Got colour 0x800000ff at (0, 2), expected 0xffffffff. d3d11.c:14383: Test failed: Got colour 0x800000ff at (1, 2), expected 0xffffffff. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:14383: Test failed: Got colour 0x800000ff at (2, 2), expected 0xffffffff. d3d11.c:11864: 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. d3d11.c:14383: Test failed: Got colour 0x800000ff at (3, 2), expected 0xff000000. d3d11.c:14383: Test failed: Got colour 0x800000ff at (0, 3), expected 0xffffffff. d3d11.c:14383: Test failed: Got colour 0x800000ff at (1, 3), expected 0xff000000. d3d11.c:14383: Test failed: Got colour 0x800000ff at (2, 3), expected 0xff000000. d3d11.c:14383: 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: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:14702: Test failed: Got colour 0x800000ff at (0, 0), expected 0xff0000ff. d3d11.c:14702: Test failed: Got colour 0x800000ff at (1, 0), expected 0xff00ffff. d3d11.c:14702: Test failed: Got colour 0x800000ff at (2, 0), expected 0xff00ff00. d3d11.c:14702: Test failed: Got colour 0x800000ff at (3, 0), expected 0xffffff00. d3d11.c:14702: Test failed: Got colour 0x800000ff at (0, 1), expected 0xffff0000. d3d11.c:14702: Test failed: Got colour 0x800000ff at (1, 1), expected 0xffff00ff. d3d11.c:14702: Test failed: Got colour 0x800000ff at (2, 1), expected 0xff000000. d3d11.c:14702: Test failed: Got colour 0x800000ff at (3, 1), expected 0xff7f7f7f. d3d11.c:14702: Test failed: Got colour 0x800000ff at (0, 2), expected 0xffffffff. d3d11.c:14702: Test failed: Got colour 0x800000ff at (1, 2), expected 0xffffffff. d3d11.c:14702: Test failed: Got colour 0x800000ff at (2, 2), expected 0xffffffff. d3d11.c:14702: Test failed: Got colour 0x800000ff at (3, 2), expected 0xff000000. d3d11.c:14702: Test failed: Got colour 0x800000ff at (0, 3), expected 0xffffffff. d3d11.c:14702: Test failed: Got colour 0x800000ff at (1, 3), expected 0xff000000. d3d11.c:14702: Test failed: Got colour 0x800000ff at (2, 3), expected 0xff000000. d3d11.c:14702: Test failed: Got colour 0x800000ff at (3, 3), expected 0xff000000. d3d11.c:11864: 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. d3d11.c:14015: 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: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:14017: 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 {4.00000000e+000, 2.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 9. 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+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 {4.00000000e+000, 1.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 12. 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: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 {3.00000000e+000, 7.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 14. d3d11.c:11093: Test failed: Got 5.00000000e-001, expected 1.00000000e+000 at (0, 0), sub-resource 0. d3d11.c:14788: Test failed: Got 0x800000ff, expected 0x00000000 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, 6.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 17. 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 {0.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), 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 {1.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 {3.00000000e+000, 5.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 20. d3d11.c:14800: Test failed: Got 0x800000ff, expected 0x00000000 at (0, 0, 0), sub-resource 0. d3d11.c:15077: Test failed: Got 0x00000000, expected 0xffff00ff 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:10777: Test failed: Got 0.00000000e+000, expected 2.00000003e-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.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 {7.00000000e+000, 3.00000000e+000, 0.00000000e+000, 0.00000000e+000} at (0, 0), sub-resource 22. d3d11.c:11151: Test failed: Got 5.00000000e-001, expected 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: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:15097: Test failed: Got 0x00000000, expected 0xffff00ff at (0, 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: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 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:11151: Test failed: Got 5.00000000e-001, expected 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: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: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: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 {9.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 {1.00000000e+001, 0.00000000e+000, 0.00000000e+000, 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:16025: Test failed: Got unexpected colour 0x00000000. d3d11.c:10815: Test failed: Got 0.00000000e+000, expected 2.55000000e+002 at (0, 0), sub-resource 0. d3d11.c:16039: 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.30000000e+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:15816: Test failed: Got 0x00000000, expected 0xffbc957c 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.40000000e+001, 0.00000000e+000, 0.00000000e+000, 1.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:10829: Test failed: Got 0.00000000e+000, expected 4.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:17043: Test failed: Got 0xffffffff, expected 0xff00ff00 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:17044: Test failed: Got 5.00000000e-001, expected 4.00000006e-001 at (0, 0), sub-resource 0. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 3. d3d11.c:17406: Test failed: Got 0xffffffff, expected 0xff000000 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 0x00ff0000 at (0, 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:17406: Test failed: Got 0xffffffff, expected 0xffff0000 at (0, 0, 0), sub-resource 0. d3d11.c:17524: Test failed: Got 0xffffffff, expected 0xffff0000 at (0, 0, 0), sub-resource 0. d3d11.c:17406: Test failed: Got 0xffffffff, expected 0x0000ff00 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:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:17406: Test failed: Got 0xffffffff, expected 0x00ffff00 at (0, 0, 0), sub-resource 0. d3d11.c:18255: 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 {2.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 0xffffff00 at (0, 0, 0), sub-resource 0. d3d11.c:18255: Test failed: Got 0x00000000, expected 0xff00ff00 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, 0.00000000e+000, 3.00000000e+000} at (0, 0), sub-resource 0. d3d11.c:18356: 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 {3.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), 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:10777: Test failed: Got 0.00000000e+000, expected 2.00000003e-001 at (0, 0), sub-resource 0. d3d11.c:18260: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:17406: Test failed: Got 0xffffffff, expected 0x000000ff 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:17406: Test failed: Got 0xffffffff, expected 0x00ff00ff at (0, 0, 0), sub-resource 0. d3d11.c:19632: Test failed: Got 0x00000000, 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 {7.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: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 0. d3d11.c:18260: Test failed: Got 0x00000000, expected 0xff0000ff 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: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:18828: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000bbbb, 0x0000cccc, 0x0000dddd} 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: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: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:20209: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0xffc00000, 0x7f800000, 0xff800000, 0x3f800000} at (0, 0), sub-resource 0. d3d11.c:20931: Test failed: Got 0xff0000ff, expected 0xff00ff00 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: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:21064: Test failed: Got 0xcc0000ff, expected 0xe2007fcc 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 {0x7fffffff, 0x7fffffff, 0x7fffffff, 0x7fffffff} at (0, 0), sub-resource 0. d3d11.c:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 2. 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 {0x80000000, 0x80000000, 0x80000000, 0x80000000} at (0, 0), sub-resource 0. d3d11.c:20939: Test failed: Got 0xff00ff00, expected 0xff0000ff at (0, 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: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: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:21075: Test failed: Got 0xcc0000ff, expected 0x7f00ff00 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: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:21079: 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: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 {8.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 {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:6086: Test failed: Got unexpected query result 0x0000000000000000. 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:11519: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 0, 0), sub-resource 3. 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 {1.10000000e+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.20000000e+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.30000000e+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 {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.40000000e+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.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 {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.60000000e+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:18832: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000c0de, 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 {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.80000000e+001, 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.90000000e+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: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: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 {2.10000000e+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: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:18828: 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.30000000e+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 0x9300: Got 0x00000000, expected 0x7f0000ff at (0, 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:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x80000000, 0x80000000, 0x80000000, 0x80000000} 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:21410: Test failed: Feature level 0x9300: Got 0x00000000, expected 0xffffff00 at (0, 0, 0), sub-resource 0. d3d11.c:21011: 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 {0.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 {0x0000aaaa, 0x0000c0de, 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 {1.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 {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:21410: Test failed: Feature level 0x9100: Got 0x00000000, expected 0xffffff00 at (0, 0, 0), sub-resource 0. d3d11.c:18832: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000c0de, 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 {4.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, 0x0000bbbb, 0x0000cccc, 0x0000dddd} at (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: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:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0xfffffffa, 0xfffffffa, 0xfffffffa, 0xfffffffa} 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:18816: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000dead, 0x0000bbbb, 0x0000ffff, 0x0000eeee} at (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:18820: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000c0de, 0x0000cccc, 0x0000dddd} at (0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0xfffffffc, 0xfffffffc, 0xfffffffc, 0xfffffffc} at (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:21873: Test failed: Got 0xffffffff, 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: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 {7.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:21964: 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 {8.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), 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: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 {9.00000000e+000, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:23488: Test failed: Got 0x00000000, expected 0xffffff00 at (0, 0, 0), sub-resource 0. 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: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:23492: Test failed: Got 0x00000000, expected 0xff0000ff at (400, 0, 0), sub-resource 0. d3d11.c:23488: Test failed: Got 0x00000000, expected 0xffffff00 at (0, 0, 0), sub-resource 0. d3d11.c:22995: Test failed: Got 0.00000000e+000, expected 1.00000000e+000 at (0, 0), 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 {1.10000000e+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 {0x0000dead, 0x0000c0de, 0x0000cccc, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:23336: Test failed: Got 0x00000000, expected 0xff0000ff at (0, 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:23341: 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, 0x0000ffff, 0x0000dddd} at (0, 0), 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: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:23346: Test failed: Got 0x00000000, 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 {1.30000000e+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.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 {0x0000dead, 0x0000c0de, 0x0000cccc, 0x0000eeee} at (0, 0), sub-resource 0. d3d11.c:23006: Test failed: Got 0.00000000e+000, expected 2.00000000e+000 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: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:18836: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000aaaa, 0x0000bbbb, 0x0000ffff, 0x0000dddd} 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: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:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000010, 0x00000010, 0x00000010, 0x00000010} at (0, 0), 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:23017: Test failed: Got 0.00000000e+000, expected 4.00000000e+000 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:24915: Test failed: Feature level 0xb000: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00003fff, 0x00003fff, 0x00003fff, 0x00003fff} at (0, 0), 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:24915: Test failed: Feature level 0xa100: 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:24921: Test failed: Feature level 0xa100: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:24915: Test failed: Feature level 0xa000: Got 0x00000000, expected 0xffffffff at (0, 0, 0), sub-resource 0. d3d11.c:24927: Test failed: Feature level 0xb000: 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 {2.00000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:26099: Test failed: Got unexpected colour 0xff0000ff. d3d11.c:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000002, 0x00000004, 0x00000000, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:26400: 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 {2.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 {0x00000002, 0x00000004, 0x00000000, 0x00000001} at (0, 0), sub-resource 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: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: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: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: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 {0x00000001, 0x00000001, 0x00000001, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:10081: Test failed: Test 78: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 78: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 78: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 78: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 78: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 78: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 78: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 78: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 78: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 78: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 78: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 78: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 78: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 78: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 78: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 78: 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.70000000e+001, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000} at (100, 100), sub-resource 0. d3d11.c:10081: Test failed: Test 79: Got unexpected colour 0x800000ff at (0, 0). d3d11.c:10081: Test failed: Test 79: Got unexpected colour 0x800000ff at (1, 0). d3d11.c:10081: Test failed: Test 79: Got unexpected colour 0x800000ff at (2, 0). d3d11.c:10081: Test failed: Test 79: Got unexpected colour 0x800000ff at (3, 0). d3d11.c:10081: Test failed: Test 79: Got unexpected colour 0x800000ff at (0, 1). d3d11.c:10081: Test failed: Test 79: Got unexpected colour 0x800000ff at (1, 1). d3d11.c:10081: Test failed: Test 79: Got unexpected colour 0x800000ff at (2, 1). d3d11.c:10081: Test failed: Test 79: Got unexpected colour 0x800000ff at (3, 1). d3d11.c:10081: Test failed: Test 79: Got unexpected colour 0x800000ff at (0, 2). d3d11.c:10081: Test failed: Test 79: Got unexpected colour 0x800000ff at (1, 2). d3d11.c:10081: Test failed: Test 79: Got unexpected colour 0x800000ff at (2, 2). d3d11.c:10081: Test failed: Test 79: Got unexpected colour 0x800000ff at (3, 2). d3d11.c:10081: Test failed: Test 79: Got unexpected colour 0x800000ff at (0, 3). d3d11.c:10081: Test failed: Test 79: Got unexpected colour 0x800000ff at (1, 3). d3d11.c:10081: Test failed: Test 79: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:10081: Test failed: Test 79: 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.80000000e+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 {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.90000000e+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: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: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 {0x0000000f, 0x007fffff, 0x0000007f, 0x3fffffff} at (0, 0), 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: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: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:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (3, 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:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (0, 1). 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:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (1, 1). 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:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (2, 1). 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:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (3, 1). 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, 0.00000000e+000, 0.00000000e+000}. d3d11.c:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (0, 2). 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:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (1, 2). 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: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:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (2, 2). 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:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (3, 2). 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:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (0, 3). 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:10081: Test failed: Test 82: Got unexpected colour 0x800000ff at (1, 3). 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: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:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000000, 0x0000ff00, 0x00000000, 0x007f8000} at (0, 0), sub-resource 0. d3d11.c:27338: Test failed: Got 0xffffffff, expected 0xff0000ff at (0, 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:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000000f, 0x00000000, 0x0000007f, 0x0000007f} at (0, 0), sub-resource 0. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.00000001e-001, 1.10000002e+000, 1.00000000e+000, 0.00000000e+000}. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.10000002e+000, 2.09999990e+000, 2.00000000e+000, 1.00000000e+000}. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {2.09999990e+000, 3.09999990e+000, 3.00000000e+000, 2.00000000e+000}. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {3.09999990e+000, 3.09999990e+000, 3.00000000e+000, 3.00000000e+000}. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {2.00000003e-001, 1.20000005e+000, 1.10000002e+000, 1.00000001e-001}. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.20000005e+000, 2.20000005e+000, 2.09999990e+000, 1.10000002e+000}. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {2.20000005e+000, 3.20000005e+000, 3.09999990e+000, 2.09999990e+000}. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {3.20000005e+000, 3.20000005e+000, 3.09999990e+000, 3.09999990e+000}. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {3.00000012e-001, 1.29999995e+000, 1.20000005e+000, 2.00000003e-001}. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.29999995e+000, 2.29999995e+000, 2.20000005e+000, 1.20000005e+000}. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {2.29999995e+000, 3.29999995e+000, 3.20000005e+000, 2.20000005e+000}. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {3.29999995e+000, 3.29999995e+000, 3.20000005e+000, 3.20000005e+000}. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {3.00000012e-001, 1.29999995e+000, 1.29999995e+000, 3.00000012e-001}. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {1.29999995e+000, 2.29999995e+000, 2.29999995e+000, 1.29999995e+000}. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {2.29999995e+000, 3.29999995e+000, 3.29999995e+000, 2.29999995e+000}. d3d11.c:28096: Test failed: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {3.29999995e+000, 3.29999995e+000, 3.29999995e+000, 3.29999995e+000}. 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:24179: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000002, 0x00000002, 0x00000002, 0x00000002} at (0, 0), sub-resource 0. d3d11.c:28879: Test failed: Feature level 0xb000: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:27343: Test failed: Got 0xffffffff, expected 0xff0000ff at (0, 0, 0), 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: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:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000000, 0x00400000, 0x00000001, 0x20000001} at (0, 0), sub-resource 0. d3d11.c:27347: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), 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: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:28136: 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:28136: 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:28136: 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:28136: 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:28136: 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:28136: 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:28136: 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:28136: 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:28136: 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:28136: 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:28136: 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:28136: 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:28136: 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:28136: 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:28136: 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:28136: 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:28985: Test failed: Got 0x00000000, expected 0x00000064 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:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x007fffff, 0x007fffff, 0x007fffff, 0x007fffff} at (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:29153: Test failed: Got 5.00000000e-001, expected 6.99999988e-001 at (0, 0), sub-resource 0. d3d11.c:28987: Test failed: Got 0x00000000, expected 0x000000c8 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 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:28888: Test failed: Feature level 0xb000: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), 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:28995: Test failed: Got 0x00000000, expected 0x0000012c at (0, 0, 0), sub-resource 0. d3d11.c:28999: Test failed: Got 0x00000000, expected 0x00000190 at (0, 0, 0), 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: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 {0x0001ffff, 0x0001ffff, 0x0001ffff, 0x0001ffff} 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:30312: 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: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: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:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000001, 0x00000001, 0x00000001, 0x00000001} at (0, 0), sub-resource 0. d3d11.c:29606: 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:30821: Test failed: Got 0xffffffff, expected 0xffff0000 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:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 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:30874: Test failed: Got 0xffffffff, expected 0xbfff0000 at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x0000ffff, 0xffff0000, 0x00000000, 0xffff0000} at (0, 0), sub-resource 0. d3d11.c:30874: Test failed: Got 0xffffffff, expected 0x8000ff00 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:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 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:31952: Test failed: Got 0x00000000, expected 0x7f7f7f7f 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 {0x00000020, 0x00000000, 0x0000001f, 0xffffffff} 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:31959: Test failed: Got 0x00000000, expected 0x3f3f3f3f at (0, 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:30320: Test failed: Got unexpected color 0xffffffff. d3d11.c:30071: 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:31824: Test failed: Test 0: Got unexpected value 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000001, 0x0000001f, 0x0000001f, 0x0000001e} at (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:32006: Test failed: Got 1.00000000e+000, expected 5.00000000e-001 at (0, 0), sub-resource 0. d3d11.c:31819: Test failed: Test 1: 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:32026: Test failed: Got 1.00000000e+000, expected 6.00000024e-001 at (0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000010, 0x00000002, 0x0000001f, 0x0000001d} at (0, 0), sub-resource 0. d3d11.c:32156: Test failed: Got 0x00, expected 0xff at (0, 0, 0), sub-resource 0. d3d11.c:31805: Test failed: Test 2: Got unexpected value 0. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xfff1e1cf at (0, 0, 0), sub-resource 0. d3d11.c:31824: Test failed: Test 2: Got unexpected value 0. d3d11.c:32162: Test failed: Got 0x00000000, expected 0xff7f4000 at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000004, 0x00000000, 0x00000003, 0x00000003} at (0, 0), sub-resource 0. d3d11.c:32156: Test failed: Got 0x00, expected 0xff at (0, 0, 0), sub-resource 0. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000005, 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:31429: Test failed: Got 0xffffffff, expected 0xff80ff80 at (0, 0, 0), sub-resource 0. d3d11.c:31824: Test failed: Test 3: Got unexpected value 0. d3d11.c:30134: Test failed: Got 0xffffffff, expected 0xff00ff00 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:31429: Test failed: Got 0xffffffff, expected 0xffdfc0a0 at (0, 0, 0), sub-resource 0. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xffdfc0a0 at (0, 0, 0), sub-resource 0. d3d11.c:32853: Test failed: 0: Got unexpected colour 0xff0000ff. d3d11.c:31824: Test failed: Test 5: Got unexpected value 0. d3d11.c:33091: Test failed: Got unexpected colour 0xffff00b2. 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:32630: Test failed: Got unexpected colour 0x800000ff at (2, 3). d3d11.c:32630: Test failed: Got unexpected colour 0x800000ff at (3, 3). d3d11.c:32853: Test failed: 2: Got unexpected colour 0xff0000ff. d3d11.c:32853: Test failed: 3: Got unexpected colour 0xff0000ff. d3d11.c:32998: Test failed: 0: Got unexpected colour 0xb233801a. d3d11.c:32998: Test failed: 1: Got unexpected colour 0xb233801a. d3d11.c:32853: Test failed: 4: Got unexpected colour 0xff0000ff. d3d11.c:32853: Test failed: 5: Got unexpected colour 0xff0000ff. d3d11.c:32998: Test failed: 2: Got unexpected colour 0xb233801a. d3d11.c:31802: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:31805: Test failed: Test 6: Got unexpected value 0. d3d11.c:31824: Test failed: Test 6: Got unexpected value 0. d3d11.c:32998: Test failed: 6: Got unexpected colour 0xb233801a. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xffbcffbc at (0, 0, 0), sub-resource 0. d3d11.c:32871: Test failed: 1: Got unexpected colour 0xff0000ff. 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: 2: Got unexpected colour 0xff0000ff. d3d11.c:33016: Test failed: 1: 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:33016: Test failed: 5: Got unexpected colour 0xb233801a. d3d11.c:33016: Test failed: 6: Got unexpected colour 0xb233801a. d3d11.c:33016: Test failed: 7: Got unexpected colour 0xb233801a. d3d11.c:32871: Test failed: 3: Got unexpected colour 0xff0000ff. d3d11.c:30320: Test failed: Got unexpected color 0xffffffff. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xff80ff80 at (0, 0, 0), sub-resource 0. d3d11.c:32871: Test failed: 5: Got unexpected colour 0xff0000ff. d3d11.c:32871: Test failed: 7: Got unexpected colour 0xff0000ff. d3d11.c:31429: Test failed: Got 0xffffffff, expected 0xfff0dec4 at (0, 0, 0), sub-resource 0. d3d11.c:33637: Test failed: Got unexpected query result 0x0000000000000000. d3d11.c:20644: Test failed: Got {0x00000000, 0x00000000, 0x00000000, 0x00000000}, expected {0x00000000, 0x00003c00, 0x0000bc00, 0x00006134} at (0, 0), sub-resource 0. d3d11.c:31864: Test failed: Got 0xffffffff, expected 0xff0000ff at (0, 0, 0), sub-resource 0. d3d11.c:33446: Test failed: Got unexpected colour 0xff000000. d3d11.c:30318: Test failed: Got unexpected color 0xffffffff. d3d11.c:34319: Test failed: Got unexpected colour 0xff000000. d3d11.c:33474: Test failed: Got unexpected colour 0xff000000. d3d11.c:34335: Test failed: Got unexpected colour 0xff000000. d3d11.c:30312: Test failed: Got 0xffffffff, expected 0xff00ff00 at (0, 0, 0), sub-resource 0. d3d11.c:34920: Test failed: Format 0x29: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {-1.72477726e-034, 0.00000000e+000, 0.00000000e+000, 1.00000000e+000}. 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:34920: Test failed: Format 0x22: Got {1.00000000e+000, 1.00000000e+000, 1.00000000e+000, 1.00000000e+000}, expected {3.56445313e+000, -1.12831593e-004, 0.00000000e+000, 1.00000000e+000}.
This merge request was approved by Gabriel Ivăncescu.