mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-04-29 07:14:41 -06:00
Fix incorrect geo shader config start index parameter bit length (#1056)
Some checks failed
citra-build / source (push) Has been cancelled
citra-build / linux (appimage) (push) Has been cancelled
citra-build / linux (fresh) (push) Has been cancelled
citra-build / macos (arm64) (push) Has been cancelled
citra-build / macos (x86_64) (push) Has been cancelled
citra-build / windows (msvc) (push) Has been cancelled
citra-build / windows (msys2) (push) Has been cancelled
citra-build / android (push) Has been cancelled
citra-build / ios (push) Has been cancelled
citra-format / clang-format (push) Has been cancelled
citra-transifex / transifex (push) Has been cancelled
citra-build / macos-universal (push) Has been cancelled
Some checks failed
citra-build / source (push) Has been cancelled
citra-build / linux (appimage) (push) Has been cancelled
citra-build / linux (fresh) (push) Has been cancelled
citra-build / macos (arm64) (push) Has been cancelled
citra-build / macos (x86_64) (push) Has been cancelled
citra-build / windows (msvc) (push) Has been cancelled
citra-build / windows (msys2) (push) Has been cancelled
citra-build / android (push) Has been cancelled
citra-build / ios (push) Has been cancelled
citra-format / clang-format (push) Has been cancelled
citra-transifex / transifex (push) Has been cancelled
citra-build / macos-universal (push) Has been cancelled
This commit is contained in:
parent
e83b81ec98
commit
ee63706887
@ -1,4 +1,4 @@
|
||||
// Copyright 2017 Citra Emulator Project
|
||||
// Copyright Citra Emulator Project / Azahar Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
@ -255,7 +255,7 @@ struct PipelineRegs {
|
||||
BitField<0, 8, GSMode> mode;
|
||||
BitField<8, 4, u32> fixed_vertex_num_minus_1;
|
||||
BitField<12, 4, u32> stride_minus_1;
|
||||
BitField<16, 4, u32> start_index;
|
||||
BitField<16, 8, u32> start_index;
|
||||
} gs_config;
|
||||
|
||||
INSERT_PADDING_WORDS(0x1);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user