code wiki / _hdl_build / nx_browser_render_shot.nx

nx_browser_render_shot.nx

buildroot/runtime/_hdl_build/nx_browser_render_shot.nx

6005 B106 linesdepth 9pulls 35 transitivereach 0 importersview sourcekind tooltopic browser
docsdependenciesstructsconstsfunctions

about

nx_browser_render_shot.nx -- R2 proof probe for the CSS-on-native-Windows arc. Reads an HTML file, runs the EXTRACTED render organ (br_layout -> CSS cascade + box layout; br_shot_png -> RGBA framebuffer paint -> PNG), prints box-count + page_h. Verifies nx_browser_render.nx is correct (WSL run) and, built through a keystone, that the CSS layout+paint runs as a native Windows PE. NOT shipped -- a render gate.

dependencies 1 imports · 0 importers

nx_browser_render.nx nx_browser_render_shot.nx

imports: nx_browser_render.nx

imported by: nobody (leaf or entry point)

call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown

main rs_atoi rs_load_family rs_cat br_face_load_idx tf_load sys_mmap nxa_die sys_write sys_exit nxa_lock_take nxa_lock_addr sys_write ↻ nxa_lock_give nxa_lock_addr ↻ nxa_report_overrun sys_write ↻ nxa_dump_printable nxa_dump_sizes sys_read_file sys_openat_rd sys_lseek sys_mmap ↻ sys_read sys_munmap sys_close tf_load_buf tf_rd16 tf_find_table tf_rd16 ↻ tf_rd32 tf_cmap_pick4 tf_rd16 ↻ tf_rd32 ↻ sys_mmap ↻ tf_rd16s tf_rd16 ↻ br_face_register sys_mmap ↻ tf_adv_em1000

structs

none

consts

none

functions

7func rs_puts(fd: i64, s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(fd, s, n); return 0 }
called by 1: main
8func rs_cat(d: *u8, o: i64, s: *u8) -> i64 { var i: i64 = 0; var p: i64 = o; while s[i] != (0 as u8) { d[p] = s[i]; p = p + 1; i = i + 1 } d[p] = 0 as u8; return p }
called by 1: rs_load_family
11func rs_load_family(dir: *u8) -> i64
29func rs_pn(v: i64) -> i64
called by 1: main
47func rs_atoi(s: *u8) -> i64
called by 1: main
60func main(argc: i64, argv: *i64) -> i64