https://bitbucket.org/daniel_fort/magic-lantern
Raw File
Tip revision: 135261883ff97f025b3154139c1a003dc4081c33 authored by Chris Miller on 27 March 2019, 11:21:18 UTC
Fix a couple of stubs that didn't get merged properly
Tip revision: 1352618
falsecolor.h
#ifndef _falsecolor_h_
#define _falsecolor_h_

int falsecolor_value(int i);

int falsecolor_value_ex(int palette, int i);

int falsecolor_fordraw(int i);

void draw_false_downsampled( void );

char* falsecolor_palette_name();

void falsecolor_palette_preview(int x, int y);

extern uint8_t *false_colour[256];
extern int falsecolor_draw;
extern int falsecolor_palette;

MENU_UPDATE_FUNC(falsecolor_display);

MENU_UPDATE_FUNC(falsecolor_display_palette);

#endif /* _falsecolor_h_ */
back to top