@CyReVolt
Tested texture based on characters, it's really too slow in current state with xterm. I need to verify, but I think current ReGIS function, push the text in VRAM and then read it again from it (that is very slow) for filling the texture. This probem does not happen with pattern register filling. Didn't tried Shaders mixer modes.
Still flickering but resolved a strange thing that I considered as a bug.
P[300,200]C[20] will draw a circle with center at 300,200, and the border at absolute coordinate 20 (here relative size of 300 - 20)P[300,200]C[+20] will draw a circle with the same center, but with a relative position to the center (an absolute size of 20).
Found some better way to send #ReGIS commands in both #Bash and #Lua: Set the command in <code>command</code> variable, then
Bash:
echo -e "\x1bP2p${command}\x1b\\"
Lua:
io.stream(string.char(0x1b).."P2p"..command..string.char(0x1b,0x5c))
Don't forget to flush streams in any languages. :).
circles bugs, border extending …here with a [+20] (absolute siz…