diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2019-11-10 23:33:04 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2019-11-10 23:33:04 -0800 |
commit | d2f5a06b00cf020409ca4916dac6fe3d2564d016 (patch) | |
tree | a78c37d8b5e357d0a9d1213a951161faaba10696 /src/rototiller.c | |
parent | 814d6614be19e20fe3db12f3c05d5e8dbcfdd0a1 (diff) |
roto: drop roto64, turning roto32 back into roto
Initially I was going to make 32 vs. 64 be a setting, but decided
now that SDL is supported it's fairly likely there will be odd fb
dimensions (arbitrary window sizes). Since this never really brought
anything of significant value, just drop the version that mostly
just demonstrated how to pack multiple pixels into a single u64 write
to the framebuffer more than anything else.
Diffstat (limited to 'src/rototiller.c')
-rw-r--r-- | src/rototiller.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/rototiller.c b/src/rototiller.c index e638fb6..883ea25 100644 --- a/src/rototiller.c +++ b/src/rototiller.c @@ -24,7 +24,7 @@ * another page so we can begin rendering another frame before vsync. With * just two pages we end up twiddling thumbs until the vsync arrives. */ -#define DEFAULT_MODULE "roto32" +#define DEFAULT_MODULE "roto" #define DEFAULT_VIDEO "sdl" extern fb_ops_t drm_fb_ops; @@ -35,16 +35,14 @@ extern rototiller_module_t flui2d_module; extern rototiller_module_t julia_module; extern rototiller_module_t pixbounce_module; extern rototiller_module_t plasma_module; -extern rototiller_module_t roto32_module; -extern rototiller_module_t roto64_module; +extern rototiller_module_t roto_module; extern rototiller_module_t ray_module; extern rototiller_module_t sparkler_module; extern rototiller_module_t stars_module; extern rototiller_module_t submit_module; static rototiller_module_t *modules[] = { - &roto32_module, - &roto64_module, + &roto_module, &ray_module, &sparkler_module, &stars_module, |