mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 20:28:04 +02:00
egl: Remove every double semi-colon
Removes all accidental semi-colons in egl. Signed-off-by: Jakob Sinclair <sinclair.jakob@openmailbox.org> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Chad Versace <chad.versace@intel.com>
This commit is contained in:
parent
e129e6eb89
commit
de743a07ac
2 changed files with 2 additions and 2 deletions
|
|
@ -514,7 +514,7 @@ droid_get_buffers_with_format(__DRIdrawable * driDrawable,
|
|||
if (height)
|
||||
*height = dri2_surf->base.Height;
|
||||
|
||||
*out_count = dri2_surf->buffer_count;;
|
||||
*out_count = dri2_surf->buffer_count;
|
||||
|
||||
return dri2_surf->buffers;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ surfaceless_get_buffers_with_format(__DRIdrawable * driDrawable,
|
|||
*width = dri2_surf->base.Width;
|
||||
if (height)
|
||||
*height = dri2_surf->base.Height;
|
||||
*out_count = dri2_surf->buffer_count;;
|
||||
*out_count = dri2_surf->buffer_count;
|
||||
return dri2_surf->buffers;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue