mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Re-enable spotlights on ATI cards again because the crash from 12.8 seems gone.
git-svn-id: https://svn.eduke32.com/eduke32@3381 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
51c5afaae6
commit
05161ea4d8
1 changed files with 2 additions and 2 deletions
|
@ -1478,13 +1478,13 @@ int16_t polymer_addlight(_prlight* light)
|
|||
|
||||
if (lighti == PR_MAXLIGHTS)
|
||||
return (-1);
|
||||
|
||||
#if 0
|
||||
// Spot lights disabled on ATI cards because they cause crashes with
|
||||
// Catalyst 12.8 drivers.
|
||||
// See: http://forums.duke4.net/topic/5723-hrp-polymer-crash/
|
||||
if (pr_ati_fboworkaround && light->radius)
|
||||
return (-1);
|
||||
|
||||
#endif
|
||||
Bmemcpy(&prlights[lighti], light, sizeof(_prlight));
|
||||
|
||||
if (light->radius) {
|
||||
|
|
Loading…
Reference in a new issue