Rename contest_painting_effects to image_processing_effects

This commit is contained in:
Marcus Huderle
2019-11-10 16:29:52 -06:00
committed by huderlem
parent 1ed3af66eb
commit 8e65f0188f
8 changed files with 36 additions and 36 deletions

View File

@@ -1,5 +1,5 @@
#ifndef GUARD_CONTEST_PAINTING_EFFECTS_H
#define GUARD_CONTEST_PAINTING_EFFECTS_H
#ifndef GUARD_IMAGE_PROCESSING_EFFECTS_H
#define GUARD_IMAGE_PROCESSING_EFFECTS_H
enum
{
@@ -27,7 +27,7 @@ enum
QUANTIZE_EFFECT_BLACK_WHITE,
};
struct ContestPaintingContext
struct ImageProcessingContext
{
u8 effect;
void *canvasPixels;
@@ -46,8 +46,8 @@ struct ContestPaintingContext
u8 personality;
};
void ApplyImageProcessingEffects(struct ContestPaintingContext *);
void ApplyImageProcessingQuantization(struct ContestPaintingContext *);
void ConvertImageProcessingToGBA(struct ContestPaintingContext *);
void ApplyImageProcessingEffects(struct ImageProcessingContext *);
void ApplyImageProcessingQuantization(struct ImageProcessingContext *);
void ConvertImageProcessingToGBA(struct ImageProcessingContext *);
#endif