View | Details | Raw Unified
Collapse All | Expand All

(-) ClanLib-0.6.5/Sources/Display/Display/DirectFB/target_directfb.cpp (-3 / +3 lines)
 Lines 104-110    Link Here 
unsigned int CL_Target_DirectFB::get_width() const
unsigned int CL_Target_DirectFB::get_width() const
{
{
  unsigned int width = 0;
  int width = 0;
  surface->GetSize (surface, &width, NULL);
  surface->GetSize (surface, &width, NULL);
 Lines 113-119    Link Here 
unsigned int CL_Target_DirectFB::get_height() const
unsigned int CL_Target_DirectFB::get_height() const
{
{
  unsigned int height = 0;
  int height = 0;
  surface->GetSize (surface, NULL, &height);
  surface->GetSize (surface, NULL, &height);
 Lines 263-269    Link Here 
void CL_Target_DirectFB::Clear (float r, float g, float b, float a)
void CL_Target_DirectFB::Clear (float r, float g, float b, float a)
{
{
  unsigned int width, height;
  int width, height;
  surface->GetSize (surface, &width, &height);
  surface->GetSize (surface, &width, &height);
(-) ClanLib-0.6.5/Sources/TTF/font_ttf.cpp (-1 / +2 lines)
 Lines 21-27    Link Here 
#include <malloc.h>
#include <malloc.h>
#include "Display/Font/font_generic.h"
#include "Display/Font/font_generic.h"
#include <freetype/freetype.h>
#include <ft2build.h>
#include FT_FREETYPE_H
#include "font_ttf.h"
#include "font_ttf.h"