Searched refs:gFramebuf (Results 1 - 6 of 6) sorted by relevance

/haiku/src/system/boot/platform/riscv/
H A Dvideo.cpp91 gKernelArgs.frame_buffer.physical_buffer.start = (addr_t)gFramebuf.colors;
93 = 4 * gFramebuf.stride * gFramebuf.height;
94 gKernelArgs.frame_buffer.width = gFramebuf.width;
95 gKernelArgs.frame_buffer.height = gFramebuf.height;
97 gKernelArgs.frame_buffer.bytes_per_row = 4 * gFramebuf.stride;
98 gKernelArgs.frame_buffer.enabled = gFramebuf.width > 0 && gFramebuf.height > 0;
116 Clear(gFramebuf, 0xff000000);
H A DFwCfg.cpp120 gFramebuf.colors = (uint32_t*)malloc(4*width*height);
121 gFramebuf.stride = width;
122 gFramebuf.width = width;
123 gFramebuf.height = height;
125 cfg.addr = B_HOST_TO_BENDIAN_INT64((size_t)gFramebuf.colors);
H A Dgraphics.h36 extern RasBuf32 gFramebuf;
H A Dconsole.cpp81 Clear(gFramebuf.Clip(charX, charY, gFixedFont.charWidth,
83 BlitMaskRgb(gFramebuf, gFixedFont.ThisGlyph(cell % 0x100),
240 sScreenOfsX = gFramebuf.width/2 - sScreenWidth*gFixedFont.charWidth/2;
241 sScreenOfsY = gFramebuf.height/2 - sScreenHeight*gFixedFont.charHeight/2;
H A Dfdt.cpp172 gFramebuf.colors = (uint32*)fdt64_to_cpu(
174 gFramebuf.stride = fdt32_to_cpu(
176 gFramebuf.width = fdt32_to_cpu(
178 gFramebuf.height = fdt32_to_cpu(
H A Dgraphics.cpp10 RasBuf32 gFramebuf = {NULL, 0, 0, 0}; variable

Completed in 103 milliseconds