PlayBASIC LIVE - Intro to G2d (openGL for PlayBASIC)

Started by kevin, May 09, 2017, 11:20:21 PM

Previous topic - Next topic

kevin






Watch On Youtube



   Related To:

      - G2D - 2D OpenGL library for PlayBASIC (WIP / BLOG / SCRATCH PAD) (login required)





stevmjon

hey kev

i got more tips. i never used the right click "find declaration". this is handy.
also, the "function index" command looks handy too.

was wondering, is it worth making a video to explain the difference between open gl , direct draw / direct x ?

  stevmjon
It's easy to start a program, but harder to finish it...

I think that means i am getting old and get side tracked too easy.

kevin


 
Quotewas wondering, is it worth making a video to explain the difference between open gl , direct draw / direct x ?

  OpenGL  / Direct3D  are 3D api's (although Direct3D includes lots of stuff also, like Input/Sound etc and is windows only).   In both, you bundle up primitives that get sent to the GPU to draw it on the card in the back ground.   They do the same things but form different perspectives.   The OpenGL API is available only many platforms.. So GL is cross platform.

  DirectDraw is for drawing 2D primitives on the GPU, although it doesn't really do much more than image copying/merging/masking stuff, so a blitter in other words.