mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
d3dvideosink: Fix warning for unhandled enum in switch
d3dhelpers.c:135:3: warning: enumeration value 'D3DFMT_D32_LOCKABLE' not handled in switch [-Wswitch]
This commit is contained in:
parent
c3685bafa4
commit
4eac9d0ae6
1 changed files with 2 additions and 0 deletions
|
@ -195,6 +195,8 @@ d3d_format_to_string (D3DFORMAT format)
|
|||
CASE (D3DFMT_A32B32G32R32F);
|
||||
CASE (D3DFMT_CxV8U8);
|
||||
CASE (D3DFMT_FORCE_DWORD);
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
return "UNKNOWN";
|
||||
|
|
Loading…
Reference in a new issue