mirror of
https://gitlab.freedesktop.org/mesa/vulkan-wsi-layer.git
synced 2026-05-08 21:58:04 +02:00
Merge 'Fix compiler warnings when building the layer' into 'main'
See merge request mesa/vulkan-wsi-layer!139
This commit is contained in:
commit
8f077c5c86
2 changed files with 3 additions and 1 deletions
|
|
@ -59,6 +59,8 @@ namespace wsi
|
|||
class wsi_ext
|
||||
{
|
||||
public:
|
||||
virtual ~wsi_ext() = default;
|
||||
|
||||
/**
|
||||
* @brief Get the name of the extension.
|
||||
*
|
||||
|
|
|
|||
|
|
@ -95,7 +95,7 @@ protected:
|
|||
*
|
||||
* @param image Handle to the image about to be released.
|
||||
*/
|
||||
void destroy_image(wsi::swapchain_image &image);
|
||||
void destroy_image(wsi::swapchain_image &image) override;
|
||||
|
||||
/**
|
||||
* @brief Sets the present payload for a swapchain image.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue