Horje
sdl draw Rectf Code Example
sdl draw Rectf
// x, y, width, height
SDL_Rect * rect = new SDL_Rect(10, 10, 10, 10);
// Colour rgba
SDL_SetRenderDrawColor( renderer, 0, 0, 255, 255 );
// Render rect
SDL_RenderFillRect( renderer, rect );
sdl draw rectangle
//x, y, width, height
SDL_Rect * rect = new SDL_Rect(10, 10, 10, 10);
//Colour rgba
SDL_SetRenderDrawColor( renderer, 0, 0, 255, 255 );
// Render rect
SDL_RenderFillRect( renderer, r );




C

Related
variably modified ‘_memory’ at file scope Code Example variably modified ‘_memory’ at file scope Code Example
remove anaconda completely ubuntu Code Example remove anaconda completely ubuntu Code Example
bootstrap 5 modal not working vue js 3 Code Example bootstrap 5 modal not working vue js 3 Code Example
octave sum all elements in matrix Code Example octave sum all elements in matrix Code Example
grep find and replace Code Example grep find and replace Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10