Home
last modified time | relevance | path

Searched refs:wipe_scr_end (Results 1 – 10 of 10) sorted by relevance

/dports/games/prboom-plus/prboom-plus-2.5.1.3/src/
H A Df_wipe.c63 static screeninfo_t wipe_scr_end; variable
132 s = wipe_scr_end.data + (y_lookup[i]*wipe_scr_end.byte_pitch+(i*depth)); in wipe_doMelt()
180 V_FreeScreen(&wipe_scr_end); in wipe_exitMelt()
181 wipe_scr_end.width = 0; in wipe_exitMelt()
182 wipe_scr_end.height = 0; in wipe_exitMelt()
185 screens[DEST_SCR] = wipe_scr_end; in wipe_exitMelt()
232 wipe_scr_end.width = SCREENWIDTH; in wipe_EndScreen()
240 wipe_scr_end.byte_pitch += 32; in wipe_EndScreen()
242 wipe_scr_end.not_on_heap = false; in wipe_EndScreen()
243 V_AllocScreen(&wipe_scr_end); in wipe_EndScreen()
[all …]
/dports/games/prboom/prboom-2.5.0/src/
H A Df_wipe.c59 static screeninfo_t wipe_scr_end; variable
116 s = wipe_scr_end.data + (y_lookup[i]*wipe_scr_end.byte_pitch+(i*depth)); in wipe_doMelt()
147 V_FreeScreen(&wipe_scr_end); in wipe_exitMelt()
148 wipe_scr_end.width = 0; in wipe_exitMelt()
149 wipe_scr_end.height = 0; in wipe_exitMelt()
152 screens[DEST_SCR] = wipe_scr_end; in wipe_exitMelt()
172 wipe_scr_end.width = SCREENWIDTH; in wipe_EndScreen()
173 wipe_scr_end.height = SCREENHEIGHT; in wipe_EndScreen()
177 wipe_scr_end.not_on_heap = false; in wipe_EndScreen()
178 V_AllocScreen(&wipe_scr_end); in wipe_EndScreen()
[all …]
/dports/games/libretro-prboom/libretro-prboom-cc80175/src/
H A Df_wipe.c57 static screeninfo_t wipe_scr_end; variable
116 … s = wipe_scr_end.data + (y_lookup[i] * SURFACE_BYTE_PITCH +(i * SURFACE_PIXEL_DEPTH)); in wipe_doMelt()
150 V_FreeScreen(&wipe_scr_end); in wipe_exitMelt()
151 wipe_scr_end.height = 0; in wipe_exitMelt()
154 screens[DEST_SCR] = wipe_scr_end; in wipe_exitMelt()
170 wipe_scr_end.height = SCREENHEIGHT; in wipe_EndScreen()
171 wipe_scr_end.not_on_heap = FALSE; in wipe_EndScreen()
172 V_AllocScreen(&wipe_scr_end); in wipe_EndScreen()
173 screens[DEST_SCR] = wipe_scr_end; in wipe_EndScreen()
/dports/games/crispy-doom/crispy-doom-crispy-doom-5.10.3/src/doom/
H A Df_wipe.c38 static pixel_t* wipe_scr_end; variable
87 e = wipe_scr_end; in wipe_doColorXForm()
146 wipe_shittyColMajorXform((dpixel_t*)wipe_scr_end, width/2, height); in wipe_initMelt()
192 s = &((dpixel_t *)wipe_scr_end)[i*height+y[i]]; in wipe_doMelt()
226 Z_Free(wipe_scr_end); in wipe_exitMelt()
249 wipe_scr_end = Z_Malloc(SCREENWIDTH * SCREENHEIGHT * sizeof(*wipe_scr_end), PU_STATIC, NULL); in wipe_EndScreen()
250 I_ReadScreen(wipe_scr_end); in wipe_EndScreen()
/dports/games/chocolate-doom/chocolate-doom-3.0.1/src/doom/
H A Df_wipe.c38 static pixel_t* wipe_scr_end; variable
87 e = wipe_scr_end; in wipe_doColorXForm()
146 wipe_shittyColMajorXform((dpixel_t*)wipe_scr_end, width/2, height); in wipe_initMelt()
192 s = &((dpixel_t *)wipe_scr_end)[i*height+y[i]]; in wipe_doMelt()
226 Z_Free(wipe_scr_end); in wipe_exitMelt()
249 wipe_scr_end = Z_Malloc(SCREENWIDTH * SCREENHEIGHT * sizeof(*wipe_scr_end), PU_STATIC, NULL); in wipe_EndScreen()
250 I_ReadScreen(wipe_scr_end); in wipe_EndScreen()
/dports/games/zdoom/zdoom-2.8.1/src/
H A Df_wipe.cpp39 static short *wipe_scr_end; variable
86 wipe_shittyColMajorXform (wipe_scr_end); in wipe_initMelt()
131 s = &wipe_scr_end[x*SCREENHEIGHT]; in wipe_doMelt()
280 fromnew = (BYTE *)wipe_scr_end; in wipe_doBurn()
337 screen->DrawBlock (0, 0, SCREENWIDTH, SCREENHEIGHT, (BYTE *)wipe_scr_end); in wipe_doFade()
346 BYTE *fromnew = (BYTE *)wipe_scr_end; in wipe_doFade()
399 wipe_scr_end = new short[SCREENWIDTH * SCREENHEIGHT / 2]; in wipe_EndScreen()
400 screen->GetBlock (0, 0, SCREENWIDTH, SCREENHEIGHT, (BYTE *)wipe_scr_end); in wipe_EndScreen()
430 if (wipe_scr_end != NULL) in wipe_Cleanup()
432 delete[] wipe_scr_end; in wipe_Cleanup()
[all …]
/dports/games/crispy-doom/crispy-doom-crispy-doom-5.10.3/src/strife/
H A Df_wipe.c41 static byte* wipe_scr_end; variable
92 byte *end_screen = wipe_scr_end; in wipe_doColorXForm()
138 wipe_shittyColMajorXform((short*)wipe_scr_end, width/2, height); in wipe_initMelt()
184 s = &((short *)wipe_scr_end)[i*height+y[i]]; in wipe_doMelt()
218 Z_Free(wipe_scr_end); in wipe_exitMelt()
243 wipe_scr_end = Z_Malloc(SCREENWIDTH * SCREENHEIGHT, PU_STATIC, NULL); in wipe_EndScreen()
244 I_ReadScreen(wipe_scr_end); in wipe_EndScreen()
/dports/games/chocolate-doom/chocolate-doom-3.0.1/src/strife/
H A Df_wipe.c41 static byte* wipe_scr_end; variable
92 byte *end_screen = wipe_scr_end; in wipe_doColorXForm()
138 wipe_shittyColMajorXform((short*)wipe_scr_end, width/2, height); in wipe_initMelt()
184 s = &((short *)wipe_scr_end)[i*height+y[i]]; in wipe_doMelt()
218 Z_Free(wipe_scr_end); in wipe_exitMelt()
243 wipe_scr_end = Z_Malloc(SCREENWIDTH * SCREENHEIGHT, PU_STATIC, NULL); in wipe_EndScreen()
244 I_ReadScreen(wipe_scr_end); in wipe_EndScreen()
/dports/games/doomlegacy/doomlegacy_1.48.8_source/src/
H A Df_wipe.c53 static byte* wipe_scr_end; variable
179 e = wipe_scr_end + y; in wipe_doColorXForm()
292 e = &wipe_scr_end[idx]; in wipe_doMelt()
364 wipe_scr_end = screens[3]; in wipe_EndScreen()
365 I_ReadScreen(wipe_scr_end); // copy vid.display in screen format in wipe_EndScreen()
/dports/games/SRB2/SRB2-SRB2_release_2.2.9/src/
H A Df_wipe.c102 static UINT8 *wipe_scr_end; //screen 4 variable
228 const UINT8 *e = wipe_scr_end; in F_DoWipe()
330 const UINT8 *e = wipe_scr_end; in F_DoColormapWipe()
458 wipe_scr_end = screens[4]; in F_WipeEndScreen()
459 I_ReadScreen(wipe_scr_end); in F_WipeEndScreen()