From 82fe9a7e3ccc638d5a2c79e8b5a3194551cce348 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Thu, 12 Aug 2021 09:50:36 -0700 Subject: [PATCH] Fixed one frame flash on textbox --- src/vn/conversation/vnconversation.c | 3 +-- src/vn/gui/vntextbox.c | 12 ++++++------ 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/src/vn/conversation/vnconversation.c b/src/vn/conversation/vnconversation.c index 439ddb33..ee06a78a 100644 --- a/src/vn/conversation/vnconversation.c +++ b/src/vn/conversation/vnconversation.c @@ -28,10 +28,9 @@ queueaction_t * vnConversationAdd(vnconversation_t *conversation) { } void vnConversationUpdate(vnconversation_t *convo, engine_t *engine) { - queueUpdate(&convo->actionQueue, engine); - convo->textbox.y = engine->render.height - convo->textbox.height; vnTextBoxUpdate(&convo->textbox, engine); + queueUpdate(&convo->actionQueue, engine); } void vnConversationRender(vnconversation_t *convo, shader_t *shader) { diff --git a/src/vn/gui/vntextbox.c b/src/vn/gui/vntextbox.c index 572ff65e..79d4c540 100644 --- a/src/vn/gui/vntextbox.c +++ b/src/vn/gui/vntextbox.c @@ -81,7 +81,12 @@ void vnTextBoxUpdate(vntextbox_t *box, engine_t *engine) { void vnTextBoxRender(vntextbox_t *box, shader_t *shader) { int32_t charStart, charCount; float yOffset; - if(box->text == NULL || box->state & VN_TEXTBOX_STATE_CLOSED > 0) return; + if(box->text == NULL || box->state & VN_TEXTBOX_STATE_CLOSED) return; + + // Render the debug box. + box->frame.x = box->x; + box->frame.y = box->y; + frameRender(&box->frame, shader); // Determine where we're rendering the indices up to. charCount = box->textScroll; @@ -108,11 +113,6 @@ void vnTextBoxRender(vntextbox_t *box, shader_t *shader) { box->primitive.indiceCount - charStart ); if(charCount < 1) return; - - // Render the debug box. - box->frame.x = box->x; - box->frame.y = box->y - yOffset; - frameRender(&box->frame, shader); // Render the Text Box shaderUsePosition(shader,