trunk/src/osd/sdl/blit13.h
| r242661 | r242662 | |
| 114 | 114 | |
| 115 | 115 | #define TEXCOPY_M( _name, _src_type, _dest_type, _op, _len_div) \ |
| 116 | 116 | INLINE void texcopy_##_name (texture_info *texture, const render_texinfo *texsource) { \ |
| 117 | | const rgb_t *palbase = texsource->palette(); \ |
| 117 | ATTR_UNUSED const rgb_t *palbase = texsource->palette(); \ |
| 118 | 118 | int x, y; \ |
| 119 | 119 | /* loop over Y */ \ |
| 120 | 120 | for (y = 0; y < texsource->height; y++) { \ |
| r242661 | r242662 | |
| 134 | 134 | |
| 135 | 135 | #define TEXROT( _name, _src_type, _dest_type, _op) \ |
| 136 | 136 | INLINE void texcopy_rot_##_name (texture_info *texture, const render_texinfo *texsource) { \ |
| 137 | | const rgb_t *palbase = texsource->palette(); \ |
| 137 | ATTR_UNUSED const rgb_t *palbase = texsource->palette(); \ |
| 138 | 138 | int x, y; \ |
| 139 | 139 | quad_setup_data *setup = &texture->setup; \ |
| 140 | 140 | int dudx = setup->dudx; \ |