Skip to content

Commit 70d94d2

Browse files
committed
Fix for VkSetEvent
We were clobbering over a pointer incorrectly, this was causing the synchronization data to be created incorrectly.
1 parent 944094d commit 70d94d2

4 files changed

Lines changed: 60 additions & 60 deletions

File tree

gapis/api/vulkan/buffer_command.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ type CommandBufferCommand struct {
2828
}
2929

3030
type QueuedCommand struct {
31-
initialCall *api.Cmd
32-
submit *api.Cmd
31+
initialCall api.Cmd
32+
submit api.Cmd
3333
submissionIndex []uint64
3434
actualSubmission bool
3535
}

0 commit comments

Comments
 (0)