|
|
| |
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); |
| |
|
|
| |
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); |
| |
|
|
| |
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); |
| |