Home
last modified time | relevance | path

Searched refs:surface_array (Results 1 – 5 of 5) sorted by relevance

/dports/multimedia/mplayer/mplayer-export-2021-12-29/libvo/
H A Dvo_xvmc.c94 static XvMCSurface surface_array[MAX_SURFACES]; variable
578 rez=XvMCCreateSurface(mDisplay,&ctx,&surface_array[i]); in config()
588 surface_render[i].shared.p_surface = &surface_array[i]; in config()
590 i,&surface_array[i], &surface_render[i]); in config()
1089 XvMCHideSurface(mDisplay,&surface_array[i]);//it doesn't hurt, I hope in xvmc_free()
1090 XvMCDestroySurface(mDisplay,&surface_array[i]); in xvmc_free()
/dports/multimedia/mencoder/mplayer-export-2021-12-29/libvo/
H A Dvo_xvmc.c94 static XvMCSurface surface_array[MAX_SURFACES]; variable
578 rez=XvMCCreateSurface(mDisplay,&ctx,&surface_array[i]); in config()
588 surface_render[i].shared.p_surface = &surface_array[i]; in config()
590 i,&surface_array[i], &surface_render[i]); in config()
1089 XvMCHideSurface(mDisplay,&surface_array[i]);//it doesn't hurt, I hope in xvmc_free()
1090 XvMCDestroySurface(mDisplay,&surface_array[i]); in xvmc_free()
/dports/multimedia/onevpl/oneVPL-2022.0.6/api/vpl/
H A Dmfxstructures.h4622 mfxStatus (MFX_CDECL *AddRef)(struct mfxSurfaceArray* surface_array);
4636 mfxStatus (MFX_CDECL *Release)(struct mfxSurfaceArray* surface_array);
4650 mfxStatus (MFX_CDECL *GetRefCounter)(struct mfxSurfaceArray* surface_array, mfxU32* counter);
/dports/multimedia/libva-intel-hybrid-driver/intel-hybrid-driver-1.0.2/src/
H A Dmedia_drv_hw_g75.h3126 unsigned int surface_array:1; member
/dports/games/tuxpaint/tuxpaint-0.9.26/src/
H A Dtuxpaint.c2020 static void free_surface(SDL_Surface ** surface_array);
2021 static void free_surface_array(SDL_Surface * surface_array[], int count);
13328 static void free_surface(SDL_Surface ** surface_array) in free_surface() argument
13330 if (surface_array) //EP added this line to avoid app crash in free_surface()
13331 if (*surface_array) in free_surface()
13333 SDL_FreeSurface(*surface_array); in free_surface()
13334 *surface_array = NULL; in free_surface()
13342 static void free_surface_array(SDL_Surface * surface_array[], int count) in free_surface_array() argument
13346 if (surface_array) //EP added this line to avoid app crash in free_surface_array()
13349 free_surface(&surface_array[i]); in free_surface_array()