mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 00:43:54 +08:00
* Reapply "revert tg calib and opencl cleanup (#37113)" (#37115)
This reverts commit 667f3bb32f.
* revert msgq too
* msgq on master
14 lines
265 B
Cython
14 lines
265 B
Cython
# distutils: language = c++
|
|
|
|
from msgq.visionipc.visionipc cimport cl_mem
|
|
from msgq.visionipc.visionipc_pyx cimport CLContext as BaseCLContext
|
|
|
|
cdef class CLContext(BaseCLContext):
|
|
pass
|
|
|
|
cdef class CLMem:
|
|
cdef cl_mem * mem
|
|
|
|
@staticmethod
|
|
cdef create(void*)
|