root / trunk / pysoy / include / stdlib.pxd

Revision 1278, 290 bytes (checked in by ArcRiley, 4 months ago)

Ticket #955 :

  • enabled basic render cycle for new material system
  • updated models.Shape and shapes example - needs more work for texcoords
  • Canvas now takes responsibility to turn it's own texture on
  • a few additional Pyrex 0.9.8.2 fixes
Line 
1
2cdef extern from "math.h" nogil :
3    cdef float sinf(float)
4    cdef float cosf(float)
5    cdef float sqrtf(float)
6
7cdef extern from "stdlib.h" nogil :
8    ctypedef unsigned int size_t
9    cdef void* malloc (size_t)
10    cdef void  free   (void* )
11    cdef void* memcpy(void*, void*, int)
Note: See TracBrowser for help on using the browser.