yuzu/src/core/hle/service/vi
comex 3373149fdc hle: Type check ResponseBuilder::Push arguments, and fix use in vi.cpp
- Add a type check so that calling Push with an invalid type produces a
  compile error rather than a linker error.

- vi.cpp was calling Push with a variable of type `std::size_t`.
  There's no explicit overload for `size_t`, but there is one for `u64`,
  which on most platforms is the same type as `size_t`.  On macOS,
  however, it isn't: both types are 64 bits, but `size_t` is `unsigned
  long` and `u64` is `unsigned long long`.  Regardless, it makes more
  sense to explicitly use `u64` here instead of `size_t`.
2020-12-06 18:59:22 -05:00
..
display service: vi: Implement CloseLayer. 2020-01-04 00:45:06 -05:00
layer service/nvflinger: Store BufferQueue instances as regular data members 2019-02-21 22:09:46 -05:00
vi.cpp hle: Type check ResponseBuilder::Push arguments, and fix use in vi.cpp 2020-12-06 18:59:22 -05:00
vi.h service: Eliminate usages of the global system instance 2020-11-26 20:03:11 -05:00
vi_m.cpp service: Eliminate usages of the global system instance 2020-11-26 20:03:11 -05:00
vi_m.h service: Eliminate usages of the global system instance 2020-11-26 20:03:11 -05:00
vi_s.cpp service: Eliminate usages of the global system instance 2020-11-26 20:03:11 -05:00
vi_s.h service: Eliminate usages of the global system instance 2020-11-26 20:03:11 -05:00
vi_u.cpp service: Eliminate usages of the global system instance 2020-11-26 20:03:11 -05:00
vi_u.h service: Eliminate usages of the global system instance 2020-11-26 20:03:11 -05:00