This commit is contained in:
Richard Smith 2019-05-21 17:53:45 +01:00
parent 790ff3fcf6
commit 4924443c1b
2 changed files with 2 additions and 2 deletions

View file

@ -21,9 +21,9 @@ See test.py and examples/*.py for how to use.
### Dynamic bindings
I have attempted to do CFFI ABI dynamic bindings too in order to avoid the need to compile a C extension module,
but they don't work properly. They fails to work in the same place the ctypes binding fails, accessing
but they don't work properly. They fail in the same place the ctypes binding fails, accessing
materials of a model, because Python can't dynamically tell the difference between a pointer and an array. There's probably
some way to specify this (e.g. in raylib_modified.h) but it's difficult to be sure we fixed them all, and the errors
some way to specify this (e.g. in raylib_modified.h) but it's difficult to be sure we fixed them all because the errors
are often completely silent.
See test_static.py for the non-working example.