mirror of
https://github.com/mpv-player/mpv
synced 2025-03-01 03:40:43 +00:00
cleanup: vo_direct3d: Mark a function static
This fixes the warning: libvo/vo_direct3d.c:984:6: warning: no previous prototype for 'vo_draw_alpha_l8a8' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@33499 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
f52b41600d
commit
94d3e6a710
@ -979,8 +979,9 @@ static int draw_frame(uint8_t *src[])
|
||||
* These values are then inverted again with
|
||||
the texture filter D3DBLEND_INVSRCALPHA
|
||||
*/
|
||||
void vo_draw_alpha_l8a8(int w, int h, unsigned char* src, unsigned char *srca,
|
||||
int srcstride, unsigned char* dstbase, int dststride)
|
||||
static void vo_draw_alpha_l8a8(int w, int h, unsigned char* src,
|
||||
unsigned char *srca, int srcstride,
|
||||
unsigned char* dstbase, int dststride)
|
||||
{
|
||||
int y;
|
||||
for (y = 0; y < h; y++) {
|
||||
|
Loading…
Reference in New Issue
Block a user