[openchrome-devel] xf86-video-openchrome: Branch 'main' - 2 commits - configure.ac src/via_display.c
Kevin Brace
kevinbrace at kemper.freedesktop.org
Thu Jul 15 02:23:18 UTC 2021
configure.ac | 2 +-
src/via_display.c | 1 -
2 files changed, 1 insertion(+), 2 deletions(-)
New commits:
commit 01b0df191d2c7e370f0e4c0484200269d03c72f0
Author: Kevin Brace <kevinbrace at gmx.com>
Date: Wed Jul 14 21:22:26 2021 -0500
Version bumped to 0.6.406
Signed-off-by: Kevin Brace <kevinbrace at gmx.com>
diff --git a/configure.ac b/configure.ac
index b85e64d..203d49a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
# Initialize Autoconf
AC_PREREQ([2.60])
AC_INIT([xf86-video-openchrome],
- [0.6.405],
+ [0.6.406],
[https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome],
[xf86-video-openchrome])
commit b8d8773a852f8dfb17a95dc0a76a3335747c8309
Author: Kevin Brace <kevinbrace at gmx.com>
Date: Wed Jul 14 21:20:21 2021 -0500
Eliminate unnecessary zero clear of HI buffer
By not zero clearing HI (Hardware Icon) buffer, this commit
improves performance slightly.
Signed-off-by: Kevin Brace <kevinbrace at gmx.com>
diff --git a/src/via_display.c b/src/via_display.c
index 66d6142..460cf1f 100644
--- a/src/via_display.c
+++ b/src/via_display.c
@@ -3496,7 +3496,6 @@ via_crtc_load_cursor_argb(xf86CrtcPtr crtc, CARD32 *image)
void *dst;
dst = drm_bo_map(pScrn, iga->cursor_bo);
- memset(dst, 0x00, iga->cursor_bo->size);
memcpy(dst, image, iga->cursor_bo->size);
drm_bo_unmap(pScrn, iga->cursor_bo);
More information about the openchrome-devel
mailing list