libobs: Fix bug drawing RGB/BGR async sources

Commit 53955301a2 introduced a async source texture copy bug due to
creating a new case in a switch without adding a break to the one above
it, causing it to execute both cases by mistake.
This commit is contained in:
jp9000
2016-12-21 20:11:31 -08:00
parent cef4cba576
commit 521c40460e
+1
View File
@@ -2172,6 +2172,7 @@ static void copy_frame_data(struct obs_source_frame *dst,
case VIDEO_FORMAT_BGRA:
case VIDEO_FORMAT_BGRX:
copy_frame_data_plane(dst, src, 0, dst->height);
break;
case VIDEO_FORMAT_Y800:
copy_frame_data_y800(dst, src);