Commit c5387bca authored by Davis King's avatar Davis King

Changed code around a little to avoid problems in gcc when used with mingw. One of the

problems was that assign_pixel() would sometimes give the wrong output when optimizations
were enabled.  This seems to be a bug in mingw's gcc and these code changes avoid triggering
it.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403812
parent b6f6ab72
......@@ -8,6 +8,7 @@
#include "../gui_widgets.h"
#include "../unicode.h"
#include "../smart_pointers_thread_safe.h"
#include "../uintn.h"
#include <map>
......@@ -34,12 +35,7 @@ namespace nativefont
namespace font_renderer
{
#if defined(WIN32) && !defined(__MINGW32__)
typedef BYTE uint8_t;
typedef WORD uint16_t;
typedef DWORD uint32_t;
#endif
typedef uint8_t byte;
typedef dlib::uint8 byte;
#ifdef WIN32
......@@ -62,7 +58,7 @@ namespace nativefont
typedef char type_t;
};
template <> struct size2inner_trait<2>{
typedef uint16_t type_t;
typedef dlib::uint16 type_t;
};
template <> struct size2inner_trait<4>{
typedef dlib::unichar type_t;
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment