File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 50
50
- (Capture/Linux) Fix missing mouse cursor when using KMS capture on a GPU with hardware cursor support
51
51
- (Capture/Windows) Add workaround for Nvidia driver bug causing Sunshine to crash when RTX HDR is globally enabled
52
52
- (Capture/Windows) Add workaround for AMD driver bug on pre-RDNA GPUs causing hardware encoding failure
53
- - (Capture/Windows) Reintroduce support for encoding on older Nvidia GPU drivers (v456.71-v522.25)
53
+ - (Capture/Windows) Reintroduce support for NVENC on older Nvidia GPU drivers (v456.71-v522.25)
54
54
- (Capture/Windows) Fix encoding on old Intel GPUs that don't support low-power H.264 encoding
55
55
- (Capture/Linux) Fix GL errors or corrupt video output on GPUs that use aux planes such as Intel Arc
56
56
- (Capture/Linux) Fix GL errors or corrupt video output on GPUs that use DRM modifiers on YUV buffers
68
68
- (Capture/Windows) Fix delay displaying UAC dialogs when the mouse cursor is not moving
69
69
- (Capture/Linux) Fix corrupt video output or stream disconnections if the display resolution changes while streaming
70
70
- (Capture/Linux) Fix color of aspect ratio padding in the capture image with VAAPI
71
+ - (Capture/Linux) Fix NVENC initialization error when using X11 capture with some GPUs
71
72
- (Tray/Linux) Fix random crash when the tray icon is updating
72
73
- (Network) Fix QoS tagging when running in IPv4+IPv6 mode
73
74
- (Process) Fix termination of child processes upon app quit when the parent has already terminated
Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ std::optional<tex_t> tex_t::make(int height, int pitch) {
222
222
return tex;
223
223
}
224
224
225
- tex_t ::tex_t () : array {}, texture { INVALID_TEXTURE } {}
225
+ tex_t ::tex_t () : array {}, texture { INVALID_TEXTURE, INVALID_TEXTURE } {}
226
226
tex_t::tex_t (tex_t &&other) : array { other.array }, texture { other.texture } {
227
227
other.array = 0 ;
228
228
other.texture .point = INVALID_TEXTURE;
You can’t perform that action at this time.
0 commit comments