From: Rudolf Polzer Date: Fri, 15 Oct 2010 22:51:42 +0000 (+0200) Subject: oops, add back 3 lines I accidentally removed X-Git-Tag: xonotic-v0.1.0preview~115 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=341b2620d6da3bbd08e82801f4f7ad16b7a74176;p=xonotic%2Fdarkplaces.git oops, add back 3 lines I accidentally removed --- diff --git a/clvm_cmds.c b/clvm_cmds.c index c143b9f5..c736cb45 100644 --- a/clvm_cmds.c +++ b/clvm_cmds.c @@ -3078,6 +3078,9 @@ static void VM_DrawPolygonCallback (const entity_render_t *ent, const rtlight_t GL_CullFace(GL_NONE); GL_DepthTest(true); // polys in 3D space shall always have depth test GL_DepthRange(0, 1); + R_Mesh_VertexPointer(polys->data_vertex3f, 0, 0); + R_Mesh_ColorPointer(polys->data_color4f, 0, 0); + R_Mesh_TexCoordPointer(0, 2, polys->data_texcoord2f, 0, 0); for (surfacelistindex = 0;surfacelistindex < numsurfaces;) {