Jump to content

[SOLVED] round artifacts


photo

Recommended Posts

Posted

Здравствуйте.
на картинке post-1525-0-54200000-1431933872_thumb.png нормальный вид с камеры. но через некоторое время появляется эта область post-1525-0-04226700-1431933879_thumb.png в ней не отображаются частицы и шейдеры (атмосферы например) post-1525-0-57937200-1431934641_thumb.png

Конфигурация ПК
windows 7
GeForce GTX 760

на моей машине это стало появляться после обновления драйвера с версии 325 до 350.
на остальных машинах проблема на каких то есть на других нет.

подскажите в чем может быть проблема. может быть в настройках камеры?

Posted

Hi Alexander,

 

Unfortuantely, it is hard to tell what is going on without seeing your actual test scene. It seems that something were changed in driver code that caused such behavior. You can try to make a "clean install" of GPU driver to see if it changed anything.

 

Could you please send us a minimal test scene for reproduction? You can use our email for sending private files: engine-support@unigine.com.

 

Also, please try to find the reason on different PCs (maybe some Anti-aliasing settings, DX11 / OpenGL issues or different driver settings).

 

Thanks!

How to submit a good bug report
---
FTP server for test scenes and user uploads:

Posted

проблема была в коде моего шейдера атмосферы.

он вызывал ошибку "implicit narrowing of type vec4 to float" 

в строках:
uniform vec4 fCameraHeight; // The camera's current height
...
float tmpDepth = exp(fScaleOverScaleDepth.x * (fInnerRadius.x - fCameraHeight));

//должно быть 
float tmpDepth = exp(fScaleOverScaleDepth.x * (fInnerRadius.x - fCameraHeight.x));

×
×
  • Create New...