mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-18 00:26:50 +02:00
Deactivate SSBOs for now
This commit is contained in:
parent
5ac0350993
commit
ad215f23c6
3 changed files with 6 additions and 3 deletions
|
@ -49,7 +49,9 @@
|
|||
|
||||
|
||||
#if (GPU_INPUT_PROFILE == GPU_CORE_43)
|
||||
#define GPU_SSBO_DRAW_CALL_INFO
|
||||
// Deactivate SSBO for now, we've run into some issues
|
||||
// on GL 4.3 capable GPUs not behaving as expected
|
||||
//#define GPU_SSBO_DRAW_CALL_INFO
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
<@if GLPROFILE == PC_GL @>
|
||||
<@def GPU_FEATURE_PROFILE GPU_CORE@>
|
||||
<@def VERSION_HEADER #version 430 core@>
|
||||
<@def VERSION_HEADER #version 410 core@>
|
||||
<@elif GLPROFILE == MAC_GL @>
|
||||
<@def GPU_FEATURE_PROFILE GPU_CORE@>
|
||||
<@def VERSION_HEADER #version 410 core@>
|
||||
|
|
|
@ -37,7 +37,8 @@ struct TransformObject {
|
|||
|
||||
layout(location=15) in ivec2 _drawCallInfo;
|
||||
|
||||
<@if GLPROFILE == PC_GL @>
|
||||
<@if FALSE @>
|
||||
// Disable SSBOs for now
|
||||
layout(std140) buffer transformObjectBuffer {
|
||||
TransformObject _object[];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue