On 18 January 2016 at 19:57, Aaryaman Vasishta
<jem456.vasishta@gmail.com> wrote:
> + char *file = NULL;
Why do you initialize this to NULL?
> + BOOL check;
> +
> +
> + hr = Direct3DRMCreate(&d3drm1);
The extra empty line is weird. Is that intentional?
It's fairly harmless here, but %x is a bad format in most cases. E.g.,
is "1000" decimal 4096 or decimal 1000? Just use %#x. Ideally you'd
also use the same message format as the other D3D tests.