[DEV] update Debug in debug

This commit is contained in:
Edouard DUPIN 2013-10-25 20:48:44 +02:00
parent 2de5439047
commit ee8d484470
6 changed files with 8 additions and 8 deletions

View File

@ -35,7 +35,7 @@ namespace draw
{ {
void parseColor(const char* _input, struct agg::rgba8& color); void parseColor(const char* _input, struct agg::rgba8& color);
} }
#include <draw/Debug.h> #include <draw/debug.h>
namespace agg namespace agg
{ {

View File

@ -25,7 +25,7 @@
#include <etk/types.h> #include <etk/types.h>
#include <etk/tool.h> #include <etk/tool.h>
#include <draw/Color.h> #include <draw/Color.h>
#include <draw/Debug.h> #include <draw/debug.h>
const draw::Color draw::color::none((uint32_t)0x00000000); const draw::Color draw::color::none((uint32_t)0x00000000);

View File

@ -28,7 +28,7 @@
#include <etk/types.h> #include <etk/types.h>
#include <etk/Vector.h> #include <etk/Vector.h>
#include <etk/math/Vector2D.h> #include <etk/math/Vector2D.h>
#include <draw/Debug.h> #include <draw/debug.h>
#include <draw/Color.h> #include <draw/Color.h>
#include <agg/agg_pixfmt_rgba.h> #include <agg/agg_pixfmt_rgba.h>
#include <agg/agg_color_rgba.h> #include <agg/agg_color_rgba.h>

View File

@ -1,6 +1,6 @@
/** /**
******************************************************************************* *******************************************************************************
* @file draw/Debug.h * @file draw/debug.h
* @brief draw : log wrapper (header) * @brief draw : log wrapper (header)
* @author Edouard DUPIN * @author Edouard DUPIN
* @date 21/08/2012 * @date 21/08/2012
@ -23,6 +23,6 @@
*/ */
#include <draw/Debug.h> #include <draw/debug.h>
const char * drawLibName = "draw "; const char * drawLibName = "draw ";

View File

@ -1,6 +1,6 @@
/** /**
******************************************************************************* *******************************************************************************
* @file draw/Debug.h * @file draw/debug.h
* @brief draw : log wrapper (Sources) * @brief draw : log wrapper (Sources)
* @author Edouard DUPIN * @author Edouard DUPIN
* @date 21/08/2012 * @date 21/08/2012
@ -26,7 +26,7 @@
#define __DRAW_DEBUG_H__ #define __DRAW_DEBUG_H__
#include <etk/types.h> #include <etk/types.h>
#include <etk/Debug.h> #include <etk/debugGeneric.h>
extern const char * drawLibName; extern const char * drawLibName;

View File

@ -45,7 +45,7 @@ def Create(target):
#ewol abstraction of the graphic librairies : #ewol abstraction of the graphic librairies :
myModule.AddSrcFile([ myModule.AddSrcFile([
'draw/Debug.cpp', 'draw/debug.cpp',
'draw/Color.cpp', 'draw/Color.cpp',
'draw/Image.cpp']) 'draw/Image.cpp'])