Twitter updates
- #Mercurial 2.1 is out with lots of largefiles fixes. Thanks to #Unity3d for working hard on making it usable! 3 hours ago
- The C++ AMP specification is online: http://t.co/ndCMyTb3. I wonder if there will be a #AMP -> #OpenCL translator. 11 hours ago
- @codedivine Yes args C++ AMP :P 've been way to busy with OpenCL on AMD lately. 13 hours ago
Development
Graphics
Calendar
Monthly Archives: March 2008
Boost 1.35 released
Boost 1.35 has been finally released. Highlights include: Rewritten Boost.Thread to closely match the C++0x Thread library, and with native_handle () support. Works great, I already ported a project to it, so far no problems. Includes also synchronisation primitives like … Continue reading
Building OpenEXR 1.4.0a on Vista/VS2008
Some notes for building OpenEXR 1.4.0a on Vista with VS2008: createDLL won’t work as it tries to create files in C:\. You can easily work around this by replacing C:\\ with a path where you have write rights. FLTK include … Continue reading
CMake 2.6 reaches beta
CMake 2.6 has reached the beta status (mailing list post). CMake is a very nice cross-platform makefile generator — it does not build the software itself but rather relies on a platform specific tool for this. However, this is actually … Continue reading
C++, <windows.h>, precompiled headers and pimpl
Today we take a look at how to make best use of precompiled headers, how to avoid the <windows.h>-is-messing-up-my-symbols-syndrome and how to properly use pimpl to reduce our compile times.