Commit Graph

19 Commits

Author SHA1 Message Date
Sylvain PILLOT 1719aa0714 added azrp_poly() and azrp_filledpoly() shaders 2023-05-26 18:14:57 +02:00
Sylvain PILLOT 69a7ece6f9 added azrp_filledcircle shader 2023-05-26 13:23:33 +02:00
Sylvain PILLOT 4f97d9e40c added prototypes of azrp_shader_circle/line_configure into azur/gint/render.h 2023-05-25 22:14:39 +02:00
Sylvain PILLOT 406cc3739e Resync with last Azur update 2023-05-13 11:28:27 +02:00
Sylvain PILLOT b3573036ac Tracking bug ... still. All code has been expanded to simplify and check 2023-05-11 21:03:08 +02:00
Sylvain PILLOT 94a20a2de9 corrected a 1 pixel shift error in azrp_line() + [WIP] on azrp_circle() 2023-05-11 07:50:56 +02:00
Sylvain PILLOT 8b5ff08fb0 added line Shader 2023-05-03 22:37:23 +02:00
Lephenixnoir e86a95f6d6
azrp: update image shader to use dwindow settings 2022-11-19 17:47:21 +01:00
Lephenixnoir 8448467cd4
azrp: bump command limit to 1024
It used to be 256 due to XYRAM limits but it's easy to hit.
2022-08-20 20:54:52 +02:00
Lephenixnoir 8badb9f9cc
azrp: add very basic triangle shader 2022-08-20 11:49:21 +02:00
Lephe 8ac9ac747a
azur: image shader with dynamic effects, and 16-row fragment 2022-05-27 20:55:44 +01:00
Lephe e124719de3
azur: share command data between fragments (with updates) 2022-05-27 20:55:44 +01:00
Lephe 911cc8e5ac
azur: documentation and optimization on rendering 2022-05-27 20:55:44 +01:00
Lephe c5cdb2b885
azur: rename tex2d shader to image 2022-05-27 20:55:44 +01:00
Lephe c16b1a85c6
azur: implement support for P4_RGB565A (P4) 2022-05-27 20:55:44 +01:00
Lephe 0fec6da1c4
azur: progress on tex2d as bopti, custom command sorter 2022-05-27 20:55:33 +01:00
Lephe 33e6a44578
azur: add shader uniforms, clear shader, super-scaling 2022-05-27 20:55:33 +01:00
Lephe 0005249f71
azur: implement all parity cases of the tex2d shader 2022-05-27 20:55:33 +01:00
Lephe 3a3f607303 azur: basic gint/SDL/emscripten setup with rendering
This basic model supports a couple of options, but mostly designed for
three targets:

* gint on fx-CG 50, with a custom XRAM-streaming rendering engine that
  is (to my knowledge) more powerful than all other existing options;

* The standard SDL/OpenGL combo for desktop platforms, using modern
  OpenGL 3.3 and some basic shaders.

* The web platform with emscripten and its OpenGL ES 2.0 API that maps
  to WebGL 1.0. OpenGL ES 2.0 code could also be used for mobile
  platforms if this ever comes up.

The current code only includes setting up the program's main loop
(update/render) as well as basic rendering.

The framework of gint's rendering engine is drawn ("shader"-based
rendering in XRAM). On the OpenGL side, some utilities are defined,
including a primitive layer of shader code compatibility for OpenGL 3.3
vs. OpenGL ES 2.0. Actual rendering is still at prototype stage.
2021-07-04 14:46:36 +02:00