1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-07 17:23:00 +00:00

CAP_POLY part 1

This commit is contained in:
?
2019-02-17 18:41:40 +01:00
committed by Zeno Rogue
parent 31037574f5
commit 99aa7e420b
10 changed files with 201 additions and 104 deletions

View File

@@ -953,7 +953,7 @@ color_t gradient(color_t c0, color_t c1, ld v0, ld v, ld v1) {
void drawCircle(int x, int y, int size, color_t color, color_t fillcolor) {
if(size < 0) size = -size;
#if CAP_GL
#if CAP_GL && CAP_POLY
if(vid.usingGL) {
glflush();
glhr::be_nontextured();