Skip to content

Commit

Permalink
Fix for VkSetEvent
Browse files Browse the repository at this point in the history
We were clobbering over a pointer incorrectly, this was causing the
synchronization data to be created incorrectly.
  • Loading branch information
AWoloszyn committed Oct 12, 2017
1 parent 944094d commit 70d94d2
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 60 deletions.
4 changes: 2 additions & 2 deletions gapis/api/vulkan/buffer_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ type CommandBufferCommand struct {
}

type QueuedCommand struct {
initialCall *api.Cmd
submit *api.Cmd
initialCall api.Cmd
submit api.Cmd
submissionIndex []uint64
actualSubmission bool
}
Expand Down
Loading

0 comments on commit 70d94d2

Please sign in to comment.