Merge branch 'ogl-polyobject-tex-fix' into 'next'

Fix OpenGL polyobject texture distortion

See merge request STJr/SRB2!1086
This commit is contained in:
James R 2020-07-24 04:49:25 -04:00
commit 28931b90dc
1 changed files with 2 additions and 2 deletions

View File

@ -2760,8 +2760,8 @@ static void HWR_RenderPolyObjectPlane(polyobj_t *polysector, boolean isceiling,
HWR_SetCurrentTexture(NULL);
// reference point for flat texture coord for each vertex around the polygon
flatxref = (float)((polysector->origVerts[0].x & (~flatflag)) / fflatwidth);
flatyref = (float)((polysector->origVerts[0].y & (~flatflag)) / fflatheight);
flatxref = (float)(((fixed_t)FIXED_TO_FLOAT(polysector->origVerts[0].x) & (~flatflag)) / fflatwidth);
flatyref = (float)(((fixed_t)FIXED_TO_FLOAT(polysector->origVerts[0].y) & (~flatflag)) / fflatheight);
// transform
v3d = planeVerts;