summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2019-11-10 16:29:52 -0600
committerhuderlem <huderlem@gmail.com>2019-11-10 16:37:26 -0600
commit8e65f0188fa601ef97560dfe2e47cea0e88fe683 (patch)
tree0c3fee61b9c61ce7a17b088724024c28fdfe94a8 /include
parent1ed3af66eb7a3f868e62d6409061a8d83a9cceae (diff)
Rename contest_painting_effects to image_processing_effects
Diffstat (limited to 'include')
-rwxr-xr-xinclude/image_processing_effects.h (renamed from include/contest_painting_effects.h)12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/contest_painting_effects.h b/include/image_processing_effects.h
index 599c38140..f6097d79f 100755
--- a/include/contest_painting_effects.h
+++ b/include/image_processing_effects.h
@@ -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