minor fixes
This commit is contained in:
parent
44267293e0
commit
9d51b1c669
|
|
@ -54,6 +54,13 @@ struct Resolution
|
|||
uint32_t width = 0; ///< 分辨率宽度
|
||||
uint32_t height = 0; ///< 分辨率高度
|
||||
uint32_t refresh_rate = 0; ///< 刷新率
|
||||
|
||||
Resolution(uint32_t width, uint32_t height, uint32_t refresh_rate)
|
||||
: width(width)
|
||||
, height(height)
|
||||
, refresh_rate(refresh_rate)
|
||||
{
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue