// dear imgui: null/dummy example application (compile and link imgui with no inputs, no outputs) #include "imgui.h" #include int main(int, char**) { IMGUI_CHECKVERSION(); ImGui::CreateContext(); ImGuiIO& io = ImGui::GetIO(); // Build atlas unsigned char* tex_pixels = NULL; int tex_w, tex_h; io.Fonts->GetTexDataAsRGBA32(&tex_pixels, &tex_w, &tex_h); for (int n = 0; n < 50; n++) { printf("NewFrame() %d\n", n); io.DisplaySize = ImVec2(1920, 1080); io.DeltaTime = 1.0f / 60.0f; ImGui::NewFrame(); static float f = 0.0f; ImGui::Text("Hello, world!"); ImGui::SliderFloat("float", &f, 0.0f, 1.0f); ImGui::Text("Application average %.3f ms/frame (%.1f FPS)", 1000.0f / io.Framerate, io.Framerate); ImGui::ShowDemoWindow(NULL); ImGui::Render(); } printf("DestroyContext()\n"); ImGui::DestroyContext(); return 0; } c'/> [no description]
aboutsummaryrefslogtreecommitdiffstats
path: root/os/common/ext/ST/STM32L1xx/system_stm32l1xx.h
blob: a5d2f7b2ed6fbd6004564fc5da86278deeb8f352 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126