11 Nov
2010
11 Nov
'10
9:33 p.m.
On Thu, Nov 11, 2010 at 9:30 PM, Lats <lats(a)yless4u.com.au> wrote:
On 11/12/2010 06:35 AM, André Hentschel wrote:
+ static int i;
- return WINED3DERR_INVALIDCALL; + TRACE("iface %p, dst_window %p stub!\n", iface, dst_window); + + if (!i++) + FIXME("iface %p, dst_window %p stub!\n", iface, dst_window);
Can you tell me what is the purpose of introducing the static int i?
To prevent a flood of FIXME's. The FIXME will only display once, subsequently, there will be a TRACE for each call. -- -Austin