#Starting a Linux Window from a C program.

19 messages · Page 1 of 1 (latest)

magic palmBOT
#

When your question is answered use !solved to mark the question as resolved.

Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question use !howto ask.

sonic phoenix
#

what does 'starting a linux window" mean?

#

like launch a shell?

#

make a GUI

#

?!

pseudo raptor
#

the answer isn't straightforward

#

there are different window systems in use with linux

#

most popular are the X window system and Wayland

#

you can interface with them directly, but you probably really want to use some GUI library that abstracts over this

#

Qt, gtk for all-encompassing frameworks

#

and many others

#

what exactly do you want to do?

#

if you want to make a game, then maybe something like sdl will be helpful anyway?

#

it should give you something that you can render into with e.g. OpenGl

#

I don't actually do much graphics stuff, so someone else can give better answer.

#

it does that and more

sonic phoenix
#

making a game.. stop wasting your time on the windowing system.. do your game and let something like SDL do all the window stuff

opaque flax
#

SDL3 is as low level as you should go to retain your sanity

#

They've got a new rendering API in v3 that's reasonably low level, but not as lowlevel as Vulkan