Lines Matching refs:fbSize
75 void allocateFB(u32 fbSize);
76 void draw(u32 code, u32 fbSize, u8* xfb);
88 void allocateFB(u32 fbSize) in allocateFB() argument
96 xfbB = (u8*)OSRoundUp32B(xfbA + fbSize); in allocateFB()
98 arenaLo = (void*)(xfbA + 2 * fbSize); in allocateFB()
113 void draw(u32 count, u32 fbSize, u8* xfb) in draw() argument
147 DCStoreRange((void*)fbStart, fbSize); in draw()
173 u32 fbSize; in main() local
183 fbSize = (u32)(VIPadFrameBufferWidth(rmode->fbWidth) in main()
186 allocateFB(fbSize); in main()
210 draw(frame, fbSize, xfb); in main()