@fell someone said they like this:
https://github.com/emoon/minifb
demofox@mastodon.gamedev.place
Posts
-
Hey All, I made a header only C++ library where it's 1 line of code to init, then you can start writing to pixels on the screen. -
Hey All, I made a header only C++ library where it's 1 line of code to init, then you can start writing to pixels on the screen.@LunaticDancer its real fast, no overhead in the library.
The pixel values persist across frames, so you could do "dirty rectangles" instead of updating every pixels every frame. If you knew which pixels were updated each frame, you could copy just those regions.
The examples run like pixel shaders as well and iterate overall pixels, but you could blit rectangles instead.
But its real fast. These demos are like 0.3ms per frame on my machine in release. -
Hey All, I made a header only C++ library where it's 1 line of code to init, then you can start writing to pixels on the screen.@RueNahcMohr @lisyarus is thinking about making a Linux friendly backend!
-
Hey All, I made a header only C++ library where it's 1 line of code to init, then you can start writing to pixels on the screen.@compassing im telling my wife, who was less impressed

-
Hey All, I made a header only C++ library where it's 1 line of code to init, then you can start writing to pixels on the screen.@JamesWidman @lesley someone should implement the api with vulkan on the backend maybe.
-
Hey All, I made a header only C++ library where it's 1 line of code to init, then you can start writing to pixels on the screen.@aeva TY Aeva

-
Hey All, I made a header only C++ library where it's 1 line of code to init, then you can start writing to pixels on the screen.Hey All, I made a header only C++ library where it's 1 line of code to init, then you can start writing to pixels on the screen.
I call it thirteen.h, as it is inspired by the simplicity of the 13h days.
Examples include a mandelbrot viewer and a playable mine sweeper game.
MIT licensed.
GitHub - Atrix256/Thirteen: Header only minimalist interface to graphics, inspired by the olden days of mode 13h
Header only minimalist interface to graphics, inspired by the olden days of mode 13h - Atrix256/Thirteen
GitHub (github.com)