Tue, 26 Jul 2016 17:41:36 +0200 Updated to compile: pyrit
Radek Brich <radek.brich@devl.cz> [Tue, 26 Jul 2016 17:41:36 +0200] rev 103
Updated to compile: - KdTree+Octree: max_depth changed to static const (this should be configured at compile time) - wget tool replaced by curl, which is now more widespread - added CMakeLists (to eventually replace SCons) - various fixes
Mon, 08 Sep 2014 20:14:24 +0200 Migrate sources to Mercurial. Update links etc. pyrit
Radek Brich <radek.brich@devl.cz> [Mon, 08 Sep 2014 20:14:24 +0200] rev 102
Migrate sources to Mercurial. Update links etc.
Wed, 19 Aug 2009 09:18:29 +0200 vcproj build target only for cc=msvc, fix sdl-config pyrit
Radek Brich <radek.brich@devl.cz> [Wed, 19 Aug 2009 09:18:29 +0200] rev 101
vcproj build target only for cc=msvc, fix sdl-config
Sun, 31 May 2009 23:06:03 +0200 new build target 'vcproj' - generate Visual C++ Studio project files; fix GCC warnings in intersect_packet() pyrit
Radek Brich <radek.brich@devl.cz> [Sun, 31 May 2009 23:06:03 +0200] rev 100
new build target 'vcproj' - generate Visual C++ Studio project files; fix GCC warnings in intersect_packet()
Sun, 31 May 2009 16:53:05 +0200 build script: updated for latest SCons, moved config.h to build/, help and clean targets does not run configure any more, fixed GCC check, added check for zlib pyrit
Radek Brich <radek.brich@devl.cz> [Sun, 31 May 2009 16:53:05 +0200] rev 99
build script: updated for latest SCons, moved config.h to build/, help and clean targets does not run configure any more, fixed GCC check, added check for zlib
Mon, 19 May 2008 22:59:04 +0200 add sections about demos to README pyrit
Radek Brich <radek.brich@devl.cz> [Mon, 19 May 2008 22:59:04 +0200] rev 98
add sections about demos to README update doxygen comments
Thu, 15 May 2008 19:15:57 +0200 added bench.py demo which prints tree build and render times pyrit
Radek Brich <radek.brich@devl.cz> [Thu, 15 May 2008 19:15:57 +0200] rev 97
added bench.py demo which prints tree build and render times added Vertex to python binding, NormalVertex is now its subclass
Thu, 15 May 2008 00:07:25 +0200 added Python binding for material.h classes pyrit
Radek Brich <radek.brich@devl.cz> [Thu, 15 May 2008 00:07:25 +0200] rev 96
added Python binding for material.h classes added raytracermodule.h header file for declarations updated car.py demo added texture.py demo (based on spheres_glass.py) all remaining 'centre' changed to more common 'center' added some more const's to material.h
Sat, 10 May 2008 14:29:37 +0200 build script fixes, add ldflags build option pyrit
Radek Brich <radek.brich@devl.cz> [Sat, 10 May 2008 14:29:37 +0200] rev 95
build script fixes, add ldflags build option update and enhance demos fix bug in 4x grid oversampling warn if writePNG called while compiled without libpng make shapes in ShapeList const and add many other const needed due to snowball effect slightly optimize Camera::makeRayPacket using _mm_shuffle_ps make Vector SIMD vectorization disabled by default (causes problems) fix bug in implicit reflection of transmissive surfaces, when surface's reflection parameter is set to zero
Thu, 08 May 2008 09:21:25 +0200 update README pyrit
Radek Brich <radek.brich@devl.cz> [Thu, 08 May 2008 09:21:25 +0200] rev 94
update README update Doxygen docs scons option 'msvc' changed to 'mingw' as msvc is default and mingw must be turned on explicitly
Tue, 06 May 2008 09:39:58 +0200 more build script tuning pyrit
Radek Brich <radek.brich@devl.cz> [Tue, 06 May 2008 09:39:58 +0200] rev 93
more build script tuning make all float constants single precision solve many warnings from msvc and gcc with various -W... flags add common.cc file for dbgmsg() function witch apparently cannot be inlined fix python module building with msvc, add manifest file handling remove forgotten RenderrowData class add stanford models download script for windows (.bat)
Mon, 05 May 2008 15:31:14 +0200 add MSVC compiler support, make it default for Windows pyrit
Radek Brich <radek.brich@devl.cz> [Mon, 05 May 2008 15:31:14 +0200] rev 92
add MSVC compiler support, make it default for Windows new header file simd.h for SSE abstraction and helpers add mselect pseudo instruction for common or(and(...), andnot(...)) replace many SSE intrinsics with new names new MemoryPool class (mempool.h) for faster KdNode allocation remove setMaxDepth() from Octree and KdTree, make max_depth const, it should be defined in constructor and never changed, change after building tree would cause error in traversal modify DefaultSampler to generate nice 2x2 packets of samples for packet tracing optimize Box and BBox::intersect_packet add precomputed invdir attribute to RayPacket scons build system: check for pthread library on Windows check for SDL generate include/config.h with variables detected by scons configuration move auxiliary files to build/ add sanity checks add writable operator[] to Vector
Fri, 02 May 2008 13:27:47 +0200 packetize Phong shader pyrit
Radek Brich <radek.brich@devl.cz> [Fri, 02 May 2008 13:27:47 +0200] rev 91
packetize Phong shader new scons config options: simd=(yes|no) - allow/suppress explicit SSE force_flags=(yes|no) - force use of specified flags instead of autodetected profile=(yes|no) - enable gcc's profiling (-pg option) check for pthread.h header, don't try to build without it add fourth Vector3 component for better memory aligning rename Vector3 to Vector partialy SSE-ize Vector class (only fully vertical operations) build static lib and python module in distinctive directories to avoid collision of library file names on some platforms
Tue, 29 Apr 2008 23:31:08 +0200 rename Python module from 'raytracer' to 'pyrit' pyrit
Radek Brich <radek.brich@devl.cz> [Tue, 29 Apr 2008 23:31:08 +0200] rev 90
rename Python module from 'raytracer' to 'pyrit' improve Python binding: - new objects: Container, Octree, KdTree, Shape, Pixmap, Sampler, DefaultSampler - all shapes are now subclasses of Shape - clean, remove redundant Getattr's - Raytracer render method now just wraps C++ method without doing any additional work adjust all demos for changes in Python binding, remove PIL dependency add demo_PIL.py as a example of pyrit + PIL usage render_nff.py now either loads file given as a argument or reads input from stdin otherwise fix bug in pixmap float to char conversion
Tue, 29 Apr 2008 13:56:29 +0200 use SSE for float to char image buffer conversion pyrit
Radek Brich <radek.brich@devl.cz> [Tue, 29 Apr 2008 13:56:29 +0200] rev 89
use SSE for float to char image buffer conversion
Mon, 28 Apr 2008 11:44:11 +0200 merge pixmap handling from sampler, material.h and ccdemos's image module to new Pixmap class pyrit
Radek Brich <radek.brich@devl.cz> [Mon, 28 Apr 2008 11:44:11 +0200] rev 88
merge pixmap handling from sampler, material.h and ccdemos's image module to new Pixmap class add check for PNG library, allow writing PNG file from a Pixmap simplify demos using new methods from Sampler and Pixmap
Sun, 27 Apr 2008 22:55:17 +0200 Sphere, Box - RayPacket intersection pyrit
Radek Brich <radek.brich@devl.cz> [Sun, 27 Apr 2008 22:55:17 +0200] rev 87
Sphere, Box - RayPacket intersection replace 5x oversampling with 4x uniform oversampling
Sun, 27 Apr 2008 19:56:23 +0200 BBox - RayPacket intersection pyrit
Radek Brich <radek.brich@devl.cz> [Sun, 27 Apr 2008 19:56:23 +0200] rev 86
BBox - RayPacket intersection clean up
Sun, 27 Apr 2008 14:19:37 +0200 implement triangle packet intersection pyrit
Radek Brich <radek.brich@devl.cz> [Sun, 27 Apr 2008 14:19:37 +0200] rev 85
implement triangle packet intersection
Sun, 27 Apr 2008 09:44:49 +0200 prepare kd-tree traversal for packet tracing (4 rays at once) pyrit
Radek Brich <radek.brich@devl.cz> [Sun, 27 Apr 2008 09:44:49 +0200] rev 84
prepare kd-tree traversal for packet tracing (4 rays at once) RayPacket and VectorPacket structures for packet tracing remove some redundant const's
Thu, 24 Apr 2008 18:12:32 +0200 vectorize makeRayPacket() using SSE intrinsics pyrit
Radek Brich <radek.brich@devl.cz> [Thu, 24 Apr 2008 18:12:32 +0200] rev 83
vectorize makeRayPacket() using SSE intrinsics
Thu, 24 Apr 2008 13:55:11 +0200 prepare structures for packet tracing pyrit
Radek Brich <radek.brich@devl.cz> [Thu, 24 Apr 2008 13:55:11 +0200] rev 82
prepare structures for packet tracing (it's already slightly faster, even without any explicit parallelization) supply missing virtual destructors
Thu, 24 Apr 2008 10:49:11 +0200 add 2D pixmap texture class pyrit
Radek Brich <radek.brich@devl.cz> [Thu, 24 Apr 2008 10:49:11 +0200] rev 81
add 2D pixmap texture class
Wed, 23 Apr 2008 19:35:03 +0200 remove forgotten noise.h includes pyrit
Radek Brich <radek.brich@devl.cz> [Wed, 23 Apr 2008 19:35:03 +0200] rev 80
remove forgotten noise.h includes common_ply.h: ignore invalid faces with duplicated points (this solves visual flaws in dragon model) extend loadShape for loading triangles realtime_dragon.cc demo: add kd-tree dump/load functionality, add colored perlin cloud texture
Wed, 23 Apr 2008 14:39:33 +0200 material and texture classes moved to material.(cc,h) pyrit
Radek Brich <radek.brich@devl.cz> [Wed, 23 Apr 2008 14:39:33 +0200] rev 79
material and texture classes moved to material.(cc,h) 2D texture mappings from textures.cc polished and moved to material.h add ColourMap class and subclasses to make textures more flexible two example textures: CheckersTexture and CloudTexture (using Perlin noise)
Wed, 23 Apr 2008 10:38:33 +0200 move shapes to extra source file pyrit
Radek Brich <radek.brich@devl.cz> [Wed, 23 Apr 2008 10:38:33 +0200] rev 78
move shapes to extra source file add serialize header and source file with common serialization functions dump/load feature for shapes and kd-tree fix few minor bugs
Tue, 22 Apr 2008 13:33:12 +0200 rewrite subsampling from old code to DefaultSampler pyrit
Radek Brich <radek.brich@devl.cz> [Tue, 22 Apr 2008 13:33:12 +0200] rev 77
rewrite subsampling from old code to DefaultSampler render in phases, clean workers after each phase
Mon, 21 Apr 2008 19:35:27 +0200 kd-tree: move recursive build subroutine from KdNode to KdTree pyrit
Radek Brich <radek.brich@devl.cz> [Mon, 21 Apr 2008 19:35:27 +0200] rev 76
kd-tree: move recursive build subroutine from KdNode to KdTree
Mon, 21 Apr 2008 09:05:09 +0200 unify capitalization of method names in C++ and Python pyrit
Radek Brich <radek.brich@devl.cz> [Mon, 21 Apr 2008 09:05:09 +0200] rev 75
unify capitalization of method names in C++ and Python
Mon, 21 Apr 2008 08:47:36 +0200 kd-tree traversal - avoid dynamic memory allocation pyrit
Radek Brich <radek.brich@devl.cz> [Mon, 21 Apr 2008 08:47:36 +0200] rev 74
kd-tree traversal - avoid dynamic memory allocation use minimum storage size for KdNode (8B on 32bit cpu) vector.h - add division operator, fix semicolons
Sun, 20 Apr 2008 19:27:59 +0200 correct camera angle of view pyrit
Radek Brich <radek.brich@devl.cz> [Sun, 20 Apr 2008 19:27:59 +0200] rev 73
correct camera angle of view render_nff.py - polygonal patches
Sun, 20 Apr 2008 16:48:24 +0200 kd-tree building - check all axes for best split, add additional shape-bbox check pyrit
Radek Brich <radek.brich@devl.cz> [Sun, 20 Apr 2008 16:48:24 +0200] rev 72
kd-tree building - check all axes for best split, add additional shape-bbox check extent Container bounds by Eps to fix invisible triangles on borders new Camera constructor with more intuitive lookat/up vectors fix camera axes (mirrored images) better camera angle-of-view change capitalization of addShape and addLight
Sat, 19 Apr 2008 18:00:27 +0200 simplify kd-tree building, it's also much faster now pyrit
Radek Brich <radek.brich@devl.cz> [Sat, 19 Apr 2008 18:00:27 +0200] rev 71
simplify kd-tree building, it's also much faster now
Tue, 15 Apr 2008 17:12:50 +0200 a fix for CPU and compiler detection pyrit
Radek Brich <radek.brich@devl.cz> [Tue, 15 Apr 2008 17:12:50 +0200] rev 70
a fix for CPU and compiler detection
Mon, 14 Apr 2008 12:51:50 +0200 move "smooth" attribute from Triangle to Material pyrit
Radek Brich <radek.brich@devl.cz> [Mon, 14 Apr 2008 12:51:50 +0200] rev 69
move "smooth" attribute from Triangle to Material lwo reader enhancements - implement more chunk types, support for smoothing flag and SMAN (smoothing max. angle)
Sat, 12 Apr 2008 02:02:45 +0200 added detection of optimal CPU flags for both GCC and IntelC pyrit
Radek Brich <radek.brich@devl.cz> [Sat, 12 Apr 2008 02:02:45 +0200] rev 68
added detection of optimal CPU flags for both GCC and IntelC
Fri, 11 Apr 2008 12:46:36 +0200 new option to choose single or double precision floats pyrit
Radek Brich <radek.brich@devl.cz> [Fri, 11 Apr 2008 12:46:36 +0200] rev 67
new option to choose single or double precision floats
Fri, 11 Apr 2008 00:13:59 +0200 fixed ICC detection pyrit
Radek Brich <radek.brich@devl.cz> [Fri, 11 Apr 2008 00:13:59 +0200] rev 66
fixed ICC detection
Thu, 10 Apr 2008 23:20:36 +0200 basic detection of compiler (GCC or ICC) and CPU capabilities pyrit
Radek Brich <radek.brich@devl.cz> [Thu, 10 Apr 2008 23:20:36 +0200] rev 65
basic detection of compiler (GCC or ICC) and CPU capabilities try to detect Python path in Windows and allow direct specification through build option plus other build system fixes
Wed, 09 Apr 2008 17:55:29 +0200 add Help with list of targets to SConstruct pyrit
Radek Brich <radek.brich@devl.cz> [Wed, 09 Apr 2008 17:55:29 +0200] rev 64
add Help with list of targets to SConstruct
Wed, 09 Apr 2008 16:51:14 +0200 add many SCons targets (see DEVNOTES) pyrit
Radek Brich <radek.brich@devl.cz> [Wed, 09 Apr 2008 16:51:14 +0200] rev 63
add many SCons targets (see DEVNOTES) make automatic model downloading work again remove Makefiles -- now obsolete and hardly maintainable
Wed, 09 Apr 2008 11:35:59 +0200 more SConscript tweaking, make model preparation work again pyrit
Radek Brich <radek.brich@devl.cz> [Wed, 09 Apr 2008 11:35:59 +0200] rev 62
more SConscript tweaking, make model preparation work again
Wed, 09 Apr 2008 00:29:11 +0200 minor SConscript tweaking pyrit
Radek Brich <radek.brich@devl.cz> [Wed, 09 Apr 2008 00:29:11 +0200] rev 61
minor SConscript tweaking
Tue, 08 Apr 2008 01:05:12 +0200 moving to SCons build system pyrit
Radek Brich <radek.brich@devl.cz> [Tue, 08 Apr 2008 01:05:12 +0200] rev 60
moving to SCons build system
Fri, 04 Apr 2008 13:54:47 +0200 add color support to lwo reader pyrit
Radek Brich <radek.brich@devl.cz> [Fri, 04 Apr 2008 13:54:47 +0200] rev 59
add color support to lwo reader python binding for Camera
Fri, 04 Apr 2008 01:55:25 +0200 new python demo: car.py pyrit
Radek Brich <radek.brich@devl.cz> [Fri, 04 Apr 2008 01:55:25 +0200] rev 58
new python demo: car.py new model format reader: LightWave lwo
Sat, 29 Mar 2008 18:01:45 +0100 new python demo: boxes pyrit
Radek Brich <radek.brich@devl.cz> [Sat, 29 Mar 2008 18:01:45 +0100] rev 57
new python demo: boxes
Sat, 29 Mar 2008 17:54:27 +0100 fix sphere transmissivity, rename demo.py to spheres_glass.py pyrit
Radek Brich <radek.brich@devl.cz> [Sat, 29 Mar 2008 17:54:27 +0100] rev 56
fix sphere transmissivity, rename demo.py to spheres_glass.py
Sat, 29 Mar 2008 12:09:50 +0100 fix bugs pyrit
Radek Brich <radek.brich@devl.cz> [Sat, 29 Mar 2008 12:09:50 +0100] rev 55
fix bugs
Sat, 29 Mar 2008 10:56:56 +0100 more raytrace_worker optimization and cleaning pyrit
Radek Brich <radek.brich@devl.cz> [Sat, 29 Mar 2008 10:56:56 +0100] rev 54
more raytrace_worker optimization and cleaning
Sat, 29 Mar 2008 02:17:22 +0100 slighly optimized raytrace_worker pyrit
Radek Brich <radek.brich@devl.cz> [Sat, 29 Mar 2008 02:17:22 +0100] rev 53
slighly optimized raytrace_worker
Fri, 28 Mar 2008 23:30:04 +0100 new implementation of sample_queue pyrit
Radek Brich <radek.brich@devl.cz> [Fri, 28 Mar 2008 23:30:04 +0100] rev 52
new implementation of sample_queue
Fri, 28 Mar 2008 21:47:32 +0100 remove debug messages - algorithm seems stable, but it's slow pyrit
Radek Brich <radek.brich@devl.cz> [Fri, 28 Mar 2008 21:47:32 +0100] rev 51
remove debug messages - algorithm seems stable, but it's slow
Fri, 28 Mar 2008 17:13:21 +0100 rewritten threads with heavy debug information pyrit
Radek Brich <radek.brich@devl.cz> [Fri, 28 Mar 2008 17:13:21 +0100] rev 50
rewritten threads with heavy debug information disabling pthreads library will not be possible any more
Fri, 28 Mar 2008 00:53:20 +0100 workaround for divide by zero bug in octree pyrit
Radek Brich <radek.brich@devl.cz> [Fri, 28 Mar 2008 00:53:20 +0100] rev 49
workaround for divide by zero bug in octree enable oversampling for DefaultSampler sampler and camera performance enhancements
Wed, 26 Mar 2008 17:03:38 +0100 begin moving subsampling and oversampling to Sampler pyrit
Radek Brich <radek.brich@devl.cz> [Wed, 26 Mar 2008 17:03:38 +0100] rev 48
begin moving subsampling and oversampling to Sampler
Wed, 26 Mar 2008 14:29:21 +0100 move Sampler classes to sampler.cc pyrit
Radek Brich <radek.brich@devl.cz> [Wed, 26 Mar 2008 14:29:21 +0100] rev 47
move Sampler classes to sampler.cc fix demos, make whole project compilable again
Wed, 26 Mar 2008 00:52:27 +0100 Doxygen pyrit
Radek Brich <radek.brich@devl.cz> [Wed, 26 Mar 2008 00:52:27 +0100] rev 46
Doxygen new Sampler object replacing rendering algorithm with more flexible one -- this breaks most of demos and disables threads and (over-/sub-)sampling functionality, need a rewrote
Wed, 19 Mar 2008 17:18:59 +0100 note for new camera classes pyrit
Radek Brich <radek.brich@devl.cz> [Wed, 19 Mar 2008 17:18:59 +0100] rev 45
note for new camera classes
Thu, 03 Jan 2008 18:06:34 +0100 MIT license for sources pyrit
Radek Brich <radek.brich@devl.cz> [Thu, 03 Jan 2008 18:06:34 +0100] rev 44
MIT license for sources update README, DEVNOTES and TODO
(0) -100 -60 tip