Skip to content

A high-performance SDL3 wrapper for the SyntaX ecosystem. Designed for "Pure Power" and simplicity, it provides a clean, Allman-style C++ interface to handle windowing and rendering. Experience the neon power of SyntaX with minimal boilerplate. Perfect for game engines and graphical applications requiring speed and stability.

License

Notifications You must be signed in to change notification settings

hypernova-developer/SyntaX_for_SDL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SyntaX for SDL3 🛡️

A modular graphical extension for the SyntaX ecosystem. This library wraps the complexity of SDL3 into a powerful, easy-to-use C++ interface while maintaining maximum performance.

Features

  • Zero Boilerplate: Initialize a window and renderer in a single line.
  • Allman Style: Clean and consistent code architecture.
  • SyntaX Integrated: Works seamlessly with the bettersyntax namespace.
  • Optimized: Native C++ performance for graphical applications.

Installation

Prerequisites

  • SDL3: Ensure you have the SDL3 development libraries installed on your system.
  • Compiler: A C++17 compatible compiler (GCC, Clang, or MSVC).

Setup

  1. Clone this repository:
    git clone [https://github.com/hypernova-developer/SyntaX_for_SDL.git](https://github.com/hypernova-developer/SyntaX_for_SDL.git)
  2. Include the header in your project:
    #include "include/bettersdl.hpp"
  3. Link the SDL3 library in your build system.

Quick Start

#include "bettersdl.hpp"

int main(int argc, char* argv[])
{
    // Create the engine instance
    bettersyntax::sdl::Engine app("SyntaX Power", 1280, 720);

    while (app.isRunning())
    {
        app.update(); // Handle events
        app.clear();  // Clear with SyntaX Purple
        app.render(); // Present frame
    }

    return 0;
}

License

Part of the SyntaX Project. Maintained by @hypernova-developer.

About

A high-performance SDL3 wrapper for the SyntaX ecosystem. Designed for "Pure Power" and simplicity, it provides a clean, Allman-style C++ interface to handle windowing and rendering. Experience the neon power of SyntaX with minimal boilerplate. Perfect for game engines and graphical applications requiring speed and stability.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages