Author: fireball
Date: Tue Apr 14 14:36:16 2009
New Revision: 40497
URL: http://svn.reactos.org/svn/reactos?rev=40497&view=rev
Log:
- usetup expects the videomode to be set, and fonts to be loaded. Change setupldr2 accordingly. This fixes the "blank" blue screen in the beginning of first stage (when started with setupldr2 of course).
Modified:
trunk/reactos/boot/freeldr/freeldr/windows/setupldr2.c
Modified: trunk/reactos/boot/freeldr/freeldr/windows/setupldr2.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/windo…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/windows/setupldr2.c [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/windows/setupldr2.c [iso-8859-1] Tue Apr 14 14:36:16 2009
@@ -320,7 +320,7 @@
LoaderBlockVA = PaToVa(LoaderBlock);
/* "Stop all motors", change videomode */
- MachPrepareForReactOS(FALSE);
+ MachPrepareForReactOS(TRUE);
/* Debugging... */
//DumpMemoryAllocMap();
Author: tkreuzer
Date: Tue Apr 14 01:40:14 2009
New Revision: 40493
URL: http://svn.reactos.org/svn/reactos?rev=40493&view=rev
Log:
forgot this file
Added:
trunk/rosapps/applications/sysutils/utils/rosperf/scroll.c (with props)
Added: trunk/rosapps/applications/sysutils/utils/rosperf/scroll.c
URL: http://svn.reactos.org/svn/reactos/trunk/rosapps/applications/sysutils/util…
==============================================================================
--- trunk/rosapps/applications/sysutils/utils/rosperf/scroll.c (added)
+++ trunk/rosapps/applications/sysutils/utils/rosperf/scroll.c [iso-8859-1] Tue Apr 14 01:40:14 2009
@@ -1,0 +1,47 @@
+/*
+ * ReactOS RosPerf - ReactOS GUI performance test program
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#include <windows.h>
+#include "rosperf.h"
+
+void
+ScrollProc(void *Context, PPERF_INFO PerfInfo, unsigned Reps)
+{
+ unsigned Rep;
+ RECT rect;
+ int x = 0, y = 0, dx = 1, dy = 1;
+
+ rect.left = rect.top = 0;
+ rect.right = PerfInfo->WndWidth;
+ rect.bottom = PerfInfo->WndHeight;
+
+ DrawTextW(PerfInfo->ForegroundDc, L"rosperf", -1, &rect, DT_LEFT | DT_TOP);
+
+ for (Rep = 0; Rep < Reps; Rep++)
+ {
+ ScrollDC((Rep & 0x100) ? PerfInfo->BackgroundDc : PerfInfo->ForegroundDc,
+ dx, dy, NULL, NULL, NULL, NULL);
+ x += dx;
+ y += dy;
+ if ((x >= PerfInfo->WndWidth -50) || x == 0) dx = -dx;
+ if ((y >= PerfInfo->WndHeight -10) || y == 0) dy = -dy;
+ }
+
+}
+
+/* EOF */
Propchange: trunk/rosapps/applications/sysutils/utils/rosperf/scroll.c
------------------------------------------------------------------------------
svn:eol-style = native