[DEV] change uneeded comments
This commit is contained in:
parent
a19458b26e
commit
08e35f60d7
2
build
2
build
@ -1 +1 @@
|
|||||||
Subproject commit 397f9eb1241bc87c5c4df4412e76b92fd87c93e4
|
Subproject commit 43927acfe1da0a75b5b56de4e128d8dc9cd5e90f
|
@ -29,7 +29,7 @@ namespace ewol {
|
|||||||
/**
|
/**
|
||||||
* @brief Virtal pure function that request the draw of all openGl elements
|
* @brief Virtal pure function that request the draw of all openGl elements
|
||||||
*/
|
*/
|
||||||
virtual void draw(bool _disableDepthTest=true)=0;
|
virtual void draw(bool _disableDepthTest = true) = 0;
|
||||||
/**
|
/**
|
||||||
* @brief clear alll tre registered element in the current element
|
* @brief clear alll tre registered element in the current element
|
||||||
*/
|
*/
|
||||||
|
@ -91,9 +91,9 @@ ewol::resource::FontFreeType::FontFreeType(const std::string& _fontName) :
|
|||||||
EWOL_ERROR("... another error code means that the font file could not ... be opened or read, or simply that it is broken...");
|
EWOL_ERROR("... another error code means that the font file could not ... be opened or read, or simply that it is broken...");
|
||||||
} else {
|
} else {
|
||||||
// all OK
|
// all OK
|
||||||
EWOL_INFO("load font : \"" << _fontName << "\" ");
|
EWOL_INFO("load font : \"" << _fontName << "\" glyph count = " << (int)m_fftFace->num_glyphs);
|
||||||
//Display();
|
|
||||||
m_init = true;
|
m_init = true;
|
||||||
|
//display();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -260,7 +260,7 @@ void ewol::resource::FontFreeType::display(void) {
|
|||||||
if(false == m_init) {
|
if(false == m_init) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
EWOL_INFO(" nuber of glyph = " << (int)m_fftFace->num_glyphs);
|
EWOL_INFO(" number of glyph = " << (int)m_fftFace->num_glyphs);
|
||||||
if ((FT_FACE_FLAG_SCALABLE & m_fftFace->face_flags) != 0) {
|
if ((FT_FACE_FLAG_SCALABLE & m_fftFace->face_flags) != 0) {
|
||||||
EWOL_INFO(" flags = FT_FACE_FLAG_SCALABLE (enable)");
|
EWOL_INFO(" flags = FT_FACE_FLAG_SCALABLE (enable)");
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user