mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-04-07 10:24:02 +08:00
* Revert "Revert tgwarp again (#37161)"
This reverts commit 45099e7fcd.
* Weird uv sizes
* Fix interleaving
* Fix on CPU
* make CPU safe
* Prevent corruption without clone
* Claude knows speeed
* fix interleaving
* less kernels
* blob caching
* This is still slightly faster
* Comment for blob cache
12 lines
504 B
Python
12 lines
504 B
Python
Import('env', 'arch', 'messaging', 'common', 'visionipc')
|
|
|
|
libs = [common, messaging, visionipc]
|
|
|
|
if arch != "Darwin":
|
|
camera_obj = env.Object(['cameras/camera_qcom2.cc', 'cameras/camera_common.cc', 'cameras/spectra.cc',
|
|
'cameras/cdm.cc', 'sensors/ox03c10.cc', 'sensors/os04c10.cc'])
|
|
env.Program('camerad', ['main.cc', camera_obj], LIBS=libs)
|
|
|
|
if GetOption("extras") and arch == "x86_64":
|
|
env.Program('test/test_ae_gray', ['test/test_ae_gray.cc', camera_obj], LIBS=libs)
|