mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
Merge remote-tracking branch 'yquake2/master'
This commit is contained in:
commit
ea7f219832
3 changed files with 5 additions and 3 deletions
|
@ -748,7 +748,7 @@ set_target_properties(q2ded PROPERTIES
|
||||||
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/release
|
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/release
|
||||||
)
|
)
|
||||||
if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
|
||||||
target_link_libraries(q2ded ${yquake2LinkerFlags})
|
target_link_libraries(q2ded ${yquake2LinkerFlags} ${yquake2ZLibLinkerFlags} ws2_32 winmm)
|
||||||
else()
|
else()
|
||||||
target_link_libraries(q2ded ${yquake2LinkerFlags} ${yquake2ServerLinkerFlags} ${yquake2ZLibLinkerFlags})
|
target_link_libraries(q2ded ${yquake2LinkerFlags} ${yquake2ServerLinkerFlags} ${yquake2ZLibLinkerFlags})
|
||||||
endif()
|
endif()
|
||||||
|
|
|
@ -1120,9 +1120,9 @@ R_GetBrushesLighting(void)
|
||||||
for (k = 0; k < currentmodel->nummodelsurfaces; k++, surf++)
|
for (k = 0; k < currentmodel->nummodelsurfaces; k++, surf++)
|
||||||
{
|
{
|
||||||
if (surf->texinfo->flags & (SURF_TRANS33 | SURF_TRANS66 | SURF_WARP)
|
if (surf->texinfo->flags & (SURF_TRANS33 | SURF_TRANS66 | SURF_WARP)
|
||||||
|| surf->flags & SURF_DRAWTURB)
|
|| surf->flags & SURF_DRAWTURB || surf->lmchain_frame == r_framecount)
|
||||||
{
|
{
|
||||||
continue;
|
continue; // either not affected by light, or already in the chain
|
||||||
}
|
}
|
||||||
|
|
||||||
// find which side of the node we are on
|
// find which side of the node we are on
|
||||||
|
@ -1132,6 +1132,7 @@ R_GetBrushesLighting(void)
|
||||||
if (((surf->flags & SURF_PLANEBACK) && (dot < -BACKFACE_EPSILON)) ||
|
if (((surf->flags & SURF_PLANEBACK) && (dot < -BACKFACE_EPSILON)) ||
|
||||||
(!(surf->flags & SURF_PLANEBACK) && (dot > BACKFACE_EPSILON)))
|
(!(surf->flags & SURF_PLANEBACK) && (dot > BACKFACE_EPSILON)))
|
||||||
{
|
{
|
||||||
|
surf->lmchain_frame = r_framecount; // don't add this twice to the chain
|
||||||
surf->lightmapchain = gl_lms.lightmap_surfaces[surf->lightmaptexturenum];
|
surf->lightmapchain = gl_lms.lightmap_surfaces[surf->lightmaptexturenum];
|
||||||
gl_lms.lightmap_surfaces[surf->lightmaptexturenum] = surf;
|
gl_lms.lightmap_surfaces[surf->lightmaptexturenum] = surf;
|
||||||
}
|
}
|
||||||
|
|
|
@ -247,6 +247,7 @@ typedef struct msurface_s
|
||||||
mpoly_t *polys; /* multiple if warped */
|
mpoly_t *polys; /* multiple if warped */
|
||||||
struct msurface_s *texturechain;
|
struct msurface_s *texturechain;
|
||||||
struct msurface_s *lightmapchain;
|
struct msurface_s *lightmapchain;
|
||||||
|
int lmchain_frame; // avoids adding this surface twice to the lightmap chain
|
||||||
|
|
||||||
mtexinfo_t *texinfo;
|
mtexinfo_t *texinfo;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue