Changeset c0efb2e in mainline for uspace/app/gfxdemo/gfxdemo.c
- Timestamp:
- 2023-10-10T18:47:35Z (15 months ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 788c76e3
- Parents:
- 082feff
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/gfxdemo/gfxdemo.c
r082feff rc0efb2e 1071 1071 console_gc_t *cgc = NULL; 1072 1072 gfx_context_t *gc; 1073 sysarg_t cols, rows; 1073 1074 errno_t rc; 1074 1075 … … 1077 1078 return EIO; 1078 1079 1080 rc = console_get_size(con, &cols, &rows); 1081 if (rc != EOK) 1082 return rc; 1083 1079 1084 rc = console_gc_create(con, stdout, &cgc); 1080 1085 if (rc != EOK) … … 1083 1088 gc = console_gc_get_ctx(cgc); 1084 1089 1085 rc = demo_loop(gc, 80, 25);1090 rc = demo_loop(gc, cols, rows); 1086 1091 if (rc != EOK) 1087 1092 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.