1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-18 07:27:40 +00:00

added CAP_EXTFONT for when font textures are not available (i.e., mobile devices)

This commit is contained in:
Zeno Rogue
2021-05-29 12:16:32 +02:00
parent 334bf12292
commit 3f7fc5f2b9
3 changed files with 9 additions and 1 deletions

View File

@@ -2640,6 +2640,7 @@ EX hyperpoint default_pointfunction(ld x, ld y) {
return xpush(x) * ypush(y) * C0;
}
#if !CAP_EXTFONT
EX void write_in_space(const shiftmatrix& V, int fsize, double size, const string& s, color_t col, int frame IS(0), int align IS(8), PPR prio IS(PPR::TEXT), pointfunction pf IS(default_pointfunction)) {
init_glfont(fsize);
glfont_t& f(*(glfont[fsize]));
@@ -2694,9 +2695,10 @@ EX void write_in_space(const shiftmatrix& V, int fsize, double size, const strin
curvestart = isize(curvedata);
}
#endif
#endif
EX void queuestr(const shiftmatrix& V, double size, const string& chr, color_t col, int frame IS(0), int align IS(8)) {
#if CAP_GL
#if CAP_GL && !CAP_EXTFONT
if(vid.usingGL) {
shiftmatrix V1 ;
if(GDIM == 3)