Go to the source code of this file.
◆ LlbVideoClearScreen()
Definition at line 310 of file video.c.
311{
315
316
319
320
321 if (OsLoader)
322 {
323
324 BackColor = 0;
325 }
326 else
327 {
328
329#ifdef BLUE_SCREEN
331#else
333#endif
334 BackColor = (BackColor << 16) | BackColor;
335 }
336
337
339
340
341 for (
p = 0;
p < ScreenSize * 2;
p += 4)
342 {
344 }
345}
ULONG NTAPI LlbHwVideoCreateColor(IN ULONG Red, IN ULONG Green, IN ULONG Blue)
PVOID NTAPI LlbHwGetFrameBuffer(VOID)
ULONG NTAPI LlbHwGetScreenWidth(VOID)
ULONG NTAPI LlbHwGetScreenHeight(VOID)
Referenced by LlbFwVideoClearScreen(), and LlbStartup().
◆ LlbVideoDrawChar()
Definition at line 277 of file video.c.
281{
286
287
290
291
293 {
294
296 for (
x = 7;
x >= 0;
x--)
297 {
298
301 }
302
303
305 }
306}
GLint GLint GLint GLint GLint x
GLint GLint GLint GLint GLint GLint y
Referenced by LlbFwVideoPutChar(), and LlbVideoPutChar().
◆ LlbVideoPutChar()
Definition at line 349 of file video.c.
350{
352
353
354#ifdef BLUE_SCREEN
356#else
358#endif
359
360
363
364
366 {
367
369
370
371 }
372 else
373 {
374
377
378
381 0xFFFF,
382 BackColor);
384 }
385}
VOID NTAPI LlbVideoDrawChar(IN UCHAR c, IN PUSHORT Buffer, IN USHORT Color, IN USHORT BackColor)
_Out_opt_ int _Out_opt_ int * cy
Referenced by LlbFwPutChar(), and putchar().