1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-18 20:52:10 +01:00

[dxvk] Don't align pushg constant data to 64 bytes

Causes binaries compiled with GCC 6.3 to crash on device creation.
This commit is contained in:
Philip Rebohle 2019-05-15 03:07:05 +02:00
parent 9c93ca451d
commit b3f61936d2
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99

View File

@ -103,7 +103,7 @@ namespace dxvk {
struct DxvkPushConstantState {
alignas(64) char data[MaxPushConstantSize];
char data[MaxPushConstantSize];
};