Skip to content

Commit aa4a196

Browse files
committed
Fix warnings
1 parent dd3204d commit aa4a196

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

gfx/video_filters/dedither.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,3 +208,9 @@ const struct softfilter_implementation *softfilter_get_implementation(softfilter
208208
{
209209
return &dedither_generic;
210210
}
211+
212+
#ifdef RARCH_INTERNAL
213+
#undef softfilter_get_implementation
214+
#undef softfilter_thread_data
215+
#undef filter_data
216+
#endif

gfx/video_filters/pixel_art_aa.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,3 +171,9 @@ static const struct softfilter_implementation paa_impl = {
171171
const struct softfilter_implementation *softfilter_get_implementation(softfilter_simd_mask_t simd) {
172172
return &paa_impl;
173173
}
174+
175+
#ifdef RARCH_INTERNAL
176+
#undef softfilter_get_implementation
177+
#undef softfilter_thread_data
178+
#undef filter_data
179+
#endif

0 commit comments

Comments
 (0)