mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-15 01:02:09 +00:00
Merge pull request #846 from devnexen/vla_0_fix
GL1 renderer fix VLA with no size cases,
This commit is contained in:
commit
a1dddaede3
1 changed files with 6 additions and 1 deletions
|
@ -526,6 +526,11 @@ R_DrawParticles(void)
|
||||||
qboolean stereo_split_tb = ((gl_state.stereo_mode == STEREO_SPLIT_VERTICAL) && gl_state.camera_separation);
|
qboolean stereo_split_tb = ((gl_state.stereo_mode == STEREO_SPLIT_VERTICAL) && gl_state.camera_separation);
|
||||||
qboolean stereo_split_lr = ((gl_state.stereo_mode == STEREO_SPLIT_HORIZONTAL) && gl_state.camera_separation);
|
qboolean stereo_split_lr = ((gl_state.stereo_mode == STEREO_SPLIT_HORIZONTAL) && gl_state.camera_separation);
|
||||||
|
|
||||||
|
if (r_newrefdef.num_particles <= 0) /* avoiding VLA with no size and vertexes built on it */
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (gl_config.pointparameters && !(stereo_split_tb || stereo_split_lr))
|
if (gl_config.pointparameters && !(stereo_split_tb || stereo_split_lr))
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
Loading…
Reference in a new issue