#include <windows.h>
#include "rosperf.h"
Go to the source code of this file.
◆ LinesHorizontalProc()
Definition at line 60 of file lines.c.
61{
62 unsigned Rep;
65
66 for (Rep = 0; Rep < Reps; )
67 {
69
71 {
74 }
75 }
76}
GLint GLint GLint GLint GLint GLint y
BOOL WINAPI MoveToEx(_In_ HDC, _In_ int, _In_ int, _Out_opt_ LPPOINT)
BOOL WINAPI LineTo(_In_ HDC, _In_ int, _In_ int)
◆ LinesProc()
Definition at line 23 of file lines.c.
24{
25 unsigned Rep;
26 int Dest;
28
29 for (Rep = 0; Rep < Reps; )
30 {
32
33 for (Dest = 2; Dest < PerfInfo->
WndHeight && Rep < Reps; Rep++, Dest += 2)
34 {
37 }
38
39 for (Dest = PerfInfo->
WndWidth - 2; 0 <= Dest && Rep < Reps; Rep++, Dest -= 2)
40 {
43 }
44
45 for (Dest = PerfInfo->
WndHeight - 2; 0 <= Dest && Rep < Reps; Rep++, Dest -= 2)
46 {
49 }
50
51 for (Dest = 2; Dest < PerfInfo->
WndWidth && Rep < Reps; Rep++, Dest += 2)
52 {
55 }
56 }
57}
◆ LinesVerticalProc()
Definition at line 79 of file lines.c.
80{
81 unsigned Rep;
84
85 for (Rep = 0; Rep < Reps; )
86 {
88
90 {
93 }
94 }
95}
GLint GLint GLint GLint GLint x