This commit is contained in:
Adam D. Ruppe 2022-02-09 09:48:35 -05:00
parent abadbf5af6
commit 92a6f957f8
3 changed files with 45 additions and 10 deletions

1
cgi.d
View File

@ -2007,6 +2007,7 @@ class Cgi {
uri ~= "s";
uri ~= "://";
uri ~= host;
version(none)
if(!(!port || port == defaultPort)) {
uri ~= ":";
uri ~= to!string(port);

View File

@ -12461,7 +12461,11 @@ enum GLMaskState {
JustCleared = 2,
}
final class GLNVGTextureLocker {}
import core.sync.mutex;
__gshared Mutex GLNVGTextureLocker;
shared static this() {
GLNVGTextureLocker = new Mutex();
}
struct GLNVGcontext {
private import core.thread : ThreadID;
@ -12630,16 +12634,16 @@ bool glnvg__deleteTexture (GLNVGcontext* gl, ref int id) nothrow @trusted @nogc
// alas, we aren't doing frame business, so we should postpone deletion
version(nanovega_debug_textures) {{ import core.stdc.stdio; printf("*** POSTPONED texture deletion with id %d (%d); glid=%u\n", tx.id, id, tx.tex); }}
version(aliced) {
synchronized(GLNVGTextureLocker.classinfo) {
{
GLNVGTextureLocker.lock_nothrow; scope(exit) GLNVGTextureLocker.unlock_nothrow;
tx.id = 0; // mark it as dead
gl.mustCleanTextures = true; // set "need cleanup" flag
}
}
} else {
try {
synchronized(GLNVGTextureLocker.classinfo) {
GLNVGTextureLocker.lock_nothrow; scope(exit) GLNVGTextureLocker.unlock_nothrow;
tx.id = 0; // mark it as dead
gl.mustCleanTextures = true; // set "need cleanup" flag
}
} catch (Exception e) {}
}
}
@ -13615,7 +13619,8 @@ void glnvg__renderViewport (void* uptr, int width, int height) nothrow @trusted
} else {
if (gl.mainTID != Thread.getThis.id) assert(0, "NanoVega: cannot use context in alien thread");
}
synchronized(GLNVGTextureLocker.classinfo) {
{
GLNVGTextureLocker.lock_nothrow; scope(exit) GLNVGTextureLocker.unlock_nothrow;
gl.mustCleanTextures = false;
foreach (immutable tidx, ref GLNVGtexture tex; gl.textures[0..gl.ntextures]) {
// no need to use atomic ops here, as we're locked

View File

@ -2075,8 +2075,11 @@ http://msdn.microsoft.com/en-us/library/windows/desktop/ms683193%28v=vs.85%29.as
_cursorX = 0;
break;
case '\t':
_cursorX ++;
_cursorX += _cursorX % 8; // FIXME: get the actual tabstop, if possible
// FIXME: get the actual tabstop, if possible
int diff = 8 - (_cursorX % 8);
if(diff == 0)
diff = 8;
_cursorX += diff;
break;
default:
_cursorX++;
@ -4995,8 +4998,34 @@ class LineGetter {
if(terminal.cursorX + 2 < terminal.width) {
remaining = terminal.width - terminal.cursorX - 2;
}
if(remaining > 8)
terminal.write(remaining < help.length ? help[0 .. remaining] : help);
if(remaining > 8) {
string msg = help;
foreach(idxh, dchar c; msg) {
remaining--;
if(remaining <= 0) {
msg = msg[0 .. idxh];
break;
}
}
/+
size_t use = help.length < remaining ? help.length : remaining;
if(use < help.length) {
if((help[use] & 0xc0) != 0x80) {
import std.utf;
use += stride(help[use .. $]);
} else {
// just get to the end of this code point
while(use < help.length && (help[use] & 0xc0) == 0x80)
use++;
}
}
auto msg = help[0 .. use];
+/
if(msg.length)
terminal.write(msg);
}
}
terminal.writeln();