mirror of https://github.com/snes9xgit/snes9x.git
GTK+: Clean up gtk_display files a little.
This commit is contained in:
parent
51909e0cb4
commit
aa741087a5
File diff suppressed because it is too large
Load Diff
|
@ -83,21 +83,18 @@ typedef struct thread_job_t
|
|||
int line_end;
|
||||
|
||||
volatile bool complete;
|
||||
}
|
||||
thread_job_t;
|
||||
} thread_job_t;
|
||||
|
||||
void S9xRegisterYUVTables (uint8 *y, uint8 *u, uint8 *v);
|
||||
void S9xSetEndianess (int type);
|
||||
double S9xGetAspect ();
|
||||
void S9xApplyAspect (int&, int&, int&, int&);
|
||||
|
||||
void S9xConvertYUV (void *src_buffer,
|
||||
void *dst_buffer,
|
||||
int src_pitch,
|
||||
int dst_pitch,
|
||||
int width,
|
||||
int height);
|
||||
|
||||
void S9xConvert (void *src,
|
||||
void *dst,
|
||||
int src_pitch,
|
||||
|
@ -105,7 +102,6 @@ void S9xConvert (void *src,
|
|||
int width,
|
||||
int height,
|
||||
int bpp);
|
||||
|
||||
void S9xConvertMask (void *src,
|
||||
void *dst,
|
||||
int src_pitch,
|
||||
|
@ -116,7 +112,6 @@ void S9xConvertMask (void *src,
|
|||
int gshift,
|
||||
int bshift,
|
||||
int bpp);
|
||||
|
||||
void S9xFilter (uint8 *src_buffer,
|
||||
int src_pitch,
|
||||
uint8 *dst_buffer,
|
||||
|
@ -124,13 +119,11 @@ void S9xFilter (uint8 *src_buffer,
|
|||
int& width,
|
||||
int& height);
|
||||
void get_filter_scale (int& width, int& height);
|
||||
|
||||
void S9xDisplayRefresh (int width, int height);
|
||||
void S9xDisplayClearBuffers ();
|
||||
void S9xReinitDisplay ();
|
||||
void S9xDisplayReconfigure ();
|
||||
void S9xQueryDrivers ();
|
||||
|
||||
S9xDisplayDriver *S9xDisplayGetDriver ();
|
||||
bool S9xDisplayDriverIsReady ();
|
||||
|
||||
|
|
Loading…
Reference in New Issue