Commit f2bb729
committed
SDL2: tidy up sdl2_render_msg
Small follow-up cleanup, no behavioural change.
- Combine the empty-msg / missing-font-data / missing-font-tex
guards into a single early return at the top. The previous
arrangement ran SetTextureColorMod and the position math even
when the loop body would never execute.
- Drop the off_x / off_y / tex_x / tex_y temporaries - they were
one-shot copies of gly-> fields used immediately afterwards.
- SDL_RenderCopyEx with rotation=0, no center, SDL_FLIP_NONE is
just SDL_RenderCopy. The legacy bitmap OSD font is never
rotated or flipped (any rotation in the new backend is applied
via per-vertex math in the gfx_display draw path) so the simpler
call is correct.
- Comment up top noting the function's role - it is a legitimate
fallback path (HAVE_GFX_WIDGETS undefined, widgets disabled in
settings, or pre-widget-init OSD frames) so future readers
don't mistake it for dead code now that set_osd_msg dispatches
real text through the sdl2_raster_font render_msg.1 parent ff50b65 commit f2bb729
1 file changed
Lines changed: 27 additions & 23 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
142 | 142 | | |
143 | 143 | | |
144 | 144 | | |
145 | | - | |
146 | | - | |
147 | | - | |
148 | | - | |
149 | | - | |
150 | | - | |
151 | | - | |
152 | | - | |
153 | | - | |
154 | | - | |
155 | | - | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
156 | 157 | | |
157 | 158 | | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
158 | 169 | | |
159 | 170 | | |
160 | 171 | | |
161 | 172 | | |
162 | 173 | | |
163 | 174 | | |
164 | | - | |
165 | 175 | | |
166 | 176 | | |
167 | 177 | | |
| |||
171 | 181 | | |
172 | 182 | | |
173 | 183 | | |
174 | | - | |
175 | | - | |
176 | | - | |
177 | | - | |
178 | | - | |
179 | | - | |
180 | | - | |
| 184 | + | |
| 185 | + | |
181 | 186 | | |
182 | 187 | | |
183 | 188 | | |
184 | | - | |
185 | | - | |
| 189 | + | |
| 190 | + | |
186 | 191 | | |
187 | 192 | | |
188 | 193 | | |
189 | | - | |
190 | | - | |
| 194 | + | |
191 | 195 | | |
192 | 196 | | |
193 | 197 | | |
| |||
0 commit comments