Gitweb links:
...log
http://git.netsurf-browser.org/libnsfb.git/shortlog/1a6a2518ee6485f37f3ac6479ca6e6098d964d80
...commit
http://git.netsurf-browser.org/libnsfb.git/commit/1a6a2518ee6485f37f3ac6479ca6e6098d964d80
...tree
http://git.netsurf-browser.org/libnsfb.git/tree/1a6a2518ee6485f37f3ac6479ca6e6098d964d80
The branch, ashmew2/kolibri has been updated
via 1a6a2518ee6485f37f3ac6479ca6e6098d964d80 (commit)
from 84c49078a6c65cf91b57224fe0f19ba6f852e0bb (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/libnsfb.git/commit/?id=1a6a2518ee6485f37f3ac6479ca6e6098d964d80
commit 1a6a2518ee6485f37f3ac6479ca6e6098d964d80
Author: Ashish Gupta <[email protected]>
Commit: Ashish Gupta <[email protected]>
Fix pixels array for Kolibri surface
diff --git a/src/surface/kolibri.c b/src/surface/kolibri.c
index 3d0fcc1..f39fc44 100644
--- a/src/surface/kolibri.c
+++ b/src/surface/kolibri.c
@@ -152,7 +152,7 @@ unsigned kolibri_scancodes(void)
void kolibri_redraw(nsfb_t *nsfb)
{
- f65_32bpp(0, 0, nsfb->width, nsfb->height, pixels + 1);
+ f65_32bpp(0, 0, nsfb->width, nsfb->height, pixels);
}
unsigned kolibri_skin_get_height(void)
@@ -181,7 +181,7 @@ void kolibri_fb_redraw(nsfb_t *nsfb)
debug_board_write_str("f65 is mighty with 32 bpp!\n");
/* Here put image pixels! it's 32bpp */
- f65_32bpp(0, 0, nsfb->width, nsfb->height, pixels + 1);
+ f65_32bpp(0, 0, nsfb->width, nsfb->height, pixels);
kolibri_window_redraw(2);
}
-----------------------------------------------------------------------
Summary of changes:
src/surface/kolibri.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/surface/kolibri.c b/src/surface/kolibri.c
index 3d0fcc1..f39fc44 100644
--- a/src/surface/kolibri.c
+++ b/src/surface/kolibri.c
@@ -152,7 +152,7 @@ unsigned kolibri_scancodes(void)
void kolibri_redraw(nsfb_t *nsfb)
{
- f65_32bpp(0, 0, nsfb->width, nsfb->height, pixels + 1);
+ f65_32bpp(0, 0, nsfb->width, nsfb->height, pixels);
}
unsigned kolibri_skin_get_height(void)
@@ -181,7 +181,7 @@ void kolibri_fb_redraw(nsfb_t *nsfb)
debug_board_write_str("f65 is mighty with 32 bpp!\n");
/* Here put image pixels! it's 32bpp */
- f65_32bpp(0, 0, nsfb->width, nsfb->height, pixels + 1);
+ f65_32bpp(0, 0, nsfb->width, nsfb->height, pixels);
kolibri_window_redraw(2);
}
--
NetSurf Framebuffer library
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org