Changeset 11


Ignore:
Timestamp:
01/26/13 11:52:13 (12 years ago)
Author:
epyon
Message:
  • common.hh - supression of C4201 warning under MSVC (nameless unions)
  • texture_atlas.hh/.cc - texture atlases based on "A Thousand Ways to Pack the Bin - A Practical Approach to Two-Dimensional Rectangle Bin Packing"
Location:
trunk
Files:
4 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/nv/common.hh

    r7 r11  
    112112#define NV_ASSERT(cond, msg) assert( (cond) && msg )
    113113
     114#if NV_COMPILER == NV_MSVC
     115#pragma warning(disable: 4201)
     116#endif
     117
    114118namespace nv
    115119{
Note: See TracChangeset for help on using the changeset viewer.