TINYGL: Fix vertice color when clipped and lighting is disabled

longcurrent_color is assigned per vertex, but it is not saved on each
vertex on creation (unlike their "color" attribute, used when lighting
is enabled).
As a consequence, and because rendering happens asynchronously (rather,
following the draw call queue managed by zdirtyrect.cpp when requested
to flip current buffer), longcurrent_color at clipping time can be
different to the one at vertex declaration time, causing color artifacts.

The effect is most noticeable in EMI set shi, in the grog dispenser +
shipyard manager closeup angle, when Guybrush exits the screen by
crossing its right border: dark triangles become visible on his face.

Instead, always use the color attribute, which is already properly
initialised on vertex creation.
This commit is contained in:
Vincent Pelletier 2017-05-12 16:57:35 +00:00
parent 92130c138e
commit a6af3a38a3
7 changed files with 4 additions and 33 deletions

View File

@ -81,11 +81,6 @@ void tglColor4f(float r, float g, float b, float a) {
p[2].f = g;
p[3].f = b;
p[4].f = a;
// direct convertion to integer to go faster if no shading
p[5].ui = (unsigned int)(r * ZB_POINT_RED_MAX);
p[6].ui = (unsigned int)(g * ZB_POINT_GREEN_MAX);
p[7].ui = (unsigned int)(b * ZB_POINT_BLUE_MAX);
p[8].ui = (unsigned int)(a * ZB_POINT_ALPHA_MAX);
gl_add_op(p);
}

View File

@ -49,18 +49,10 @@ void gl_transform_to_viewport(GLContext *c, GLVertex *v) {
v->zp.y = (int)(v->pc.Y * winv * c->viewport.scale.Y + c->viewport.trans.Y);
v->zp.z = (int)(v->pc.Z * winv * c->viewport.scale.Z + c->viewport.trans.Z);
// color
if (c->lighting_enabled) {
v->zp.r = (int)(v->color.X * ZB_POINT_RED_MAX);
v->zp.g = (int)(v->color.Y * ZB_POINT_GREEN_MAX);
v->zp.b = (int)(v->color.Z * ZB_POINT_BLUE_MAX);
v->zp.a = (int)(v->color.W * ZB_POINT_ALPHA_MAX);
} else {
// no need to convert to integer if no lighting : take current color
v->zp.r = c->longcurrent_color[0];
v->zp.g = c->longcurrent_color[1];
v->zp.b = c->longcurrent_color[2];
v->zp.a = c->longcurrent_color[3];
}
v->zp.r = (int)(v->color.X * ZB_POINT_RED_MAX);
v->zp.g = (int)(v->color.Y * ZB_POINT_GREEN_MAX);
v->zp.b = (int)(v->color.Z * ZB_POINT_BLUE_MAX);
v->zp.a = (int)(v->color.W * ZB_POINT_ALPHA_MAX);
// texture
if (c->texture_2d_enabled) {

View File

@ -149,10 +149,6 @@ void glInit(void *zbuffer1, int textureSize) {
// default state
c->current_color = Vector4(1.0f, 1.0f, 1.0f, 1.0f);
c->longcurrent_color[0] = 65535;
c->longcurrent_color[1] = 65535;
c->longcurrent_color[2] = 65535;
c->longcurrent_color[3] = 65535;
c->current_normal = Vector4(1.0f, 0.0f, 0.0f, 0.0f);

View File

@ -54,10 +54,6 @@ void glopColor(GLContext *c, GLParam *p) {
c->current_color.Y = p[2].f;
c->current_color.Z = p[3].f;
c->current_color.W = p[4].f;
c->longcurrent_color[0] = p[5].ui;
c->longcurrent_color[1] = p[6].ui;
c->longcurrent_color[2] = p[7].ui;
c->longcurrent_color[3] = p[8].ui;
if (c->color_material_enabled) {
GLParam q[7];

View File

@ -463,7 +463,6 @@ RasterizationDrawCall::RasterizationState RasterizationDrawCall::captureState()
memcpy(state.viewportScaling, c->viewport.scale._v, sizeof(c->viewport.scale._v));
memcpy(state.viewportTranslation, c->viewport.trans._v, sizeof(c->viewport.trans._v));
memcpy(state.currentColor, c->longcurrent_color, sizeof(c->longcurrent_color));
return state;
}
@ -494,7 +493,6 @@ void RasterizationDrawCall::applyState(const RasterizationDrawCall::Rasterizatio
memcpy(c->viewport.scale._v, state.viewportScaling, sizeof(c->viewport.scale._v));
memcpy(c->viewport.trans._v, state.viewportTranslation, sizeof(c->viewport.trans._v));
memcpy(c->longcurrent_color, state.currentColor, sizeof(c->longcurrent_color));
}
void RasterizationDrawCall::execute(const Common::Rect &clippingRectangle, bool restoreState) const {
@ -676,10 +674,6 @@ bool RasterizationDrawCall::RasterizationState::operator==(const RasterizationSt
alphaRefValue == other.alphaRefValue &&
texture == other.texture &&
shadowMaskBuf == other.shadowMaskBuf &&
currentColor[0] == other.currentColor[0] &&
currentColor[1] == other.currentColor[1] &&
currentColor[2] == other.currentColor[2] &&
currentColor[3] == other.currentColor[3] &&
viewportTranslation[0] == other.viewportTranslation[0] &&
viewportTranslation[1] == other.viewportTranslation[1] &&
viewportTranslation[2] == other.viewportTranslation[2] &&

View File

@ -127,7 +127,6 @@ private:
int sfactor, dfactor;
int textureVersion;
int depthTestEnabled;
unsigned int currentColor[4];
float viewportTranslation[3];
float viewportScaling[3];
bool alphaTest;

View File

@ -331,7 +331,6 @@ struct GLContext {
// current vertex state
Vector4 current_color;
unsigned int longcurrent_color[4]; // precomputed integer color
Vector4 current_normal;
Vector4 current_tex_coord;
int current_edge_flag;