wine_compat.h 398 B

123456789101112
  1. #pragma once
  2. namespace sunrise::client::graphics {
  3. /**
  4. * Opens and releases the screen device context once, which is what makes Wine attach its display.
  5. * Wine defers that attach until something asks for the display, and the renderer expects it to
  6. * have happened already. On Windows the call is harmless.
  7. */
  8. void initialize_wine_display() noexcept;
  9. } // namespace sunrise::client::graphics