Re: directpython question

2007-09-25 Thread Heikki Salo
e a problem if it does not correctly support DirectX 9.0c (released in 2004). You should see what the DirectX diagnostics tool says (dxdiag.exe - found in WINDIR\system32) and possibly update the driver. Then cross your fingers and see what happens. -- Heikki Salo -- http://mail.python.org/mailman/listinfo/python-list

Re: DirectPython

2006-08-28 Thread Heikki Salo
ce() tests if some basic requirements are met and fails if they are not. You can try to use CREATE.SOFTWARE | CREATE.NOCAPCHECK combination to pass these checks, but most of the advanced samples probably don't work. -- Heikki Salo -- http://mail.python.org/mailman/listinfo/python-list

Re: C-API: A beginner's problem

2006-03-19 Thread Heikki Salo
Heikki Salo wrote: > Fabian Steiner wrote: >> What did I do wrong? As I am quite new to C, I probably made many >> mistakes, so please feel free to correct me. > > The following line: > > > for (i = 0; i <= seqlen; i++) { > > Should be "for (i

Re: C-API: A beginner's problem

2006-03-19 Thread Heikki Salo
Fabian Steiner wrote: > What did I do wrong? As I am quite new to C, I probably made many > mistakes, so please feel free to correct me. The following line: > for (i = 0; i <= seqlen; i++) { Should be "for (i = 0; i < seqlen; i++) {". Otherwise the last assignment will be out of bounds an