- Timestamp:
- 2020-02-24T17:03:26Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2a515dcd
- Parents:
- 1388f7f0
- Location:
- uspace
- Files:
-
- 4 edited
-
app/gfxdemo/gfxdemo.c (modified) (2 diffs)
-
app/terminal/main.c (modified) (1 diff)
-
lib/display/include/types/display.h (modified) (1 diff)
-
lib/meson.build (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/gfxdemo/gfxdemo.c
r1388f7f0 r265989d 399 399 printf("Init canvas..\n"); 400 400 401 window = window_open( "comp:0/winreg", NULL,401 window = window_open(DISPLAY_DEFAULT, NULL, 402 402 WINDOW_MAIN | WINDOW_DECORATED, "GFX Demo"); 403 403 if (window == NULL) { … … 462 462 printf("Init display..\n"); 463 463 464 rc = display_open( NULL, &display);464 rc = display_open(DISPLAY_DEFAULT, &display); 465 465 if (rc != EOK) { 466 466 printf("Error opening display.\n"); -
uspace/app/terminal/main.c
r1388f7f0 r265989d 46 46 errno_t rc; 47 47 48 rc = display_open( NULL, &display);48 rc = display_open(DISPLAY_DEFAULT, &display); 49 49 if (rc != EOK) { 50 50 printf("%s: Error opening display.\n", NAME); -
uspace/lib/display/include/types/display.h
r1388f7f0 r265989d 40 40 #include <io/kbd_event.h> 41 41 #include <io/pos_event.h> 42 #include <stddef.h> 42 43 #include <stdint.h> 44 45 /** Use the default display service (argument to display_open() */ 46 #define DISPLAY_DEFAULT NULL 43 47 44 48 /** Display server session */ -
uspace/lib/meson.build
r1388f7f0 r265989d 33 33 'c', 34 34 'math', 35 'display', 35 36 'gui', 36 37 'draw',
Note:
See TracChangeset
for help on using the changeset viewer.
