Simple DirectMedia Layer 2.0
Great Artist
Next, the developer needs a renderer, that is, the tool that draws the window. How you do this is up to you. You could use DirectX in Windows, whereas you would normally use OpenGL on Linux. A renderer is generated by the SDL_CreateRenderer()
function:
SDL_Renderer *renderer = SDL_CreateRenderer(window, -1,↩ SDL_RENDERER_ACCELERATED |SDL_RENDERER_PRESENTVSYNC);
As its first parameter, this command expects a pointer to the window into which the renderer will later dump all the output. The -1
flag tells SDL to select a renderer with specific properties. The following flags specify what they are. In the example, I want the renderer to use the graphics card's hardware acceleration (SDL_RENDERER_ACCELERATED
) and synchronize the screen buildup with the screen frequency (SDL_RENDERER_PRESENTVSYNC
). SDL_CreateRenderer()
finally outputs a pointer to an appropriate renderer. If this pointer is NULL
, an error occurred, and the reason is displayed by SDL_GetError()
.
You now can tell the renderer to empty the contents of the window:
SDL_SetRenderDrawColor(renderer, 235, 235, 235, 255); SDL_RenderClear(renderer);
The first function sets drawing color to a light gray with an RGB value of 235, 235, 235
. The last parameter of SDL_SetRenderDrawColor()
sets the transparency (more precisely, the value of the alpha channel). In this case, I want the renderer to make light gray opaque. SDL_RenderClear()
then paints the window with the selected color.
Invitation
To display a picture in the window, you first need to load the picture. SDL itself only offers the SDL_LoadBMP()
function, which loads an uncompressed BMP format image into memory. You only need to pass a file name to the function:
SDL_Surface *fig = SDL_LoadBMP("logo.bmp");
As in the legacy SDL 1.2, the result is a pointer to a surface. This data structure simply encapsulates the bitmap in RAM. To load other formats, you need to either load them yourself and fire them into an SDL_Surface
data structure or use a helper library, such as the popular SDL_Image (see the "Accomplices" box).
Accomplices
SDL covers only the game programmer's basic requirements with its function set. For example, it only loads images in BMP format. Because of this, some developers have written additional helper libraries: SDL_net
simplifies access to the network, for example; SDL_mixer
allows mixing of audio material; SDL_ttf
embellishes text using TrueType fonts, and SDL_Image
loads images in popular file formats.
These and several other libraries have even received the status of "official" extensions and found a home on the SDL website. Since the redesign of the home page, they are, however, no longer linked directly [3].
Together with SDL, the four above-mentioned libraries have made the jump to version 2. Essentially, they support the new features in SDL. For example, SDL_Image
can return the image as a texture. The following statement loads a TIFF photo, logo.tiff
, from disk:
SDL_Texture *logo = IMG_LoadTexture(renderer, "logo.tiff");
Because the libraries only work with SDL 2, they are now called SDL2_Image
, SDL2_ttf
, SDL2_mixer
, and SDL2_net
.
Converted
At this point, a small problem arises: The renderer can paint only textures in the window and not surfaces. This means you need to convert the surface into a texture:
SDL_Texture *texture = SDL_CreateTextureFromSurface(renderer, fig);
Because the surface is now redundant, the developer frees the memory allocated to it:
SDL_FreeSurface(fig);
Finally, you just need to tell the renderer to copy the texture into the window:
SDL_RenderCopy(renderer, texture, NULL,NULL);
The NULL
in the penultimate parameter instructs the renderer to draw the entire texture in the window and not just a section. If the last parameter is NULL
, the renderer fits the texture into the window. If the texture (i.e., the loaded image) has different dimensions from the window, it leads to distortion, as shown in Figure 3.
« Previous 1 2 3 4 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.