1 /* 2 * Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 * Copyright 2015, Augustin Cavalier <waddlesplash>. All rights reserved. 4 * Distributed under the terms of the MIT License. 5 * 6 * Effect from corTeX / Optimum. 7 */ 8 #ifndef NEBULA_DRAW_H 9 #define NEBULA_DRAW_H 10 11 12 void memshset(char* dstParam, int center_shade, int fixed_shade, int half_length); 13 void mblur(char* srcParam, int nbpixels); 14 15 16 #endif /* NEBULA_DRAW_H */ 17