Initial pass on renaming project code to lime

This commit is contained in:
Joshua Granick
2013-11-27 18:05:59 -08:00
parent 00407203fa
commit b2da64c536
177 changed files with 1902 additions and 1900 deletions

View File

@@ -1,12 +1,12 @@
#ifndef NME_PIXEL_H
#define NME_PIXEL_H
#ifndef LIME_PIXEL_H
#define LIME_PIXEL_H
// The order or RGB or BGR is determined to the primary surface's
// native order - this allows most transfers to be donw without swapping R & B
// When rendering from a source to a dest, the source is swapped to match in
// the blending code.
namespace nme
namespace lime
{
extern bool gC0IsRed;
@@ -289,6 +289,6 @@ inline void QBlendAlpha(Uint8 &ioDest, Uint8 inSrc)
} // end namespace nme
} // end namespace lime
#endif