diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-06-28 15:57:54 -0600 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-06-28 16:01:12 -0600 |
commit | eb4691098767935c1ffd10f7da46796c11eefcfa (patch) | |
tree | cb52c739182961869efc5b41bce68a97f9731807 /libdimension/Makefile.am | |
parent | 1b77e953067ce43515e96f99ecafa2ea468a60bc (diff) | |
download | dimension-eb4691098767935c1ffd10f7da46796c11eefcfa.tar.xz |
Use sched_getaffinity() rather than sysconf(_SC_NPROCESSORS_ONLN).
Also, abstract cpu counting into dedicated dmnsn_ncpus() function.
Diffstat (limited to 'libdimension/Makefile.am')
-rw-r--r-- | libdimension/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libdimension/Makefile.am b/libdimension/Makefile.am index 732233e..905606d 100644 --- a/libdimension/Makefile.am +++ b/libdimension/Makefile.am @@ -49,8 +49,6 @@ lib_LTLIBRARIES = libdimension.la libdimension_la_SOURCES = $(nobase_include_HEADERS) \ ambient.c \ - prtree.c \ - prtree.h \ camera.c \ canvas.c \ canvas_pigment.c \ @@ -71,8 +69,12 @@ libdimension_la_SOURCES = $(nobase_include_HEADERS) \ perspective.c \ phong.c \ plane.c \ + platform.c \ + platform.h \ point_light.c \ progress.c \ + prtree.c \ + prtree.h \ raytrace.c \ reflective.c \ scene.c \ |