Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Bakker <jeroen@blender.org>2021-03-19 16:02:07 +0300
committerJeroen Bakker <jeroen@blender.org>2021-03-19 19:11:47 +0300
commitde504e6dec54b7713bea6327005a094e5d2227fc (patch)
tree5b5f92ef420c0dcece74818962ca3fadda7b48e7 /source/blender/compositor/operations/COM_CompositorOperation.h
parent50c54354385a8b15e00b8f1538387ffc16773686 (diff)
Cleanup: Use enum class for CompositorPriority.
Diffstat (limited to 'source/blender/compositor/operations/COM_CompositorOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_CompositorOperation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/compositor/operations/COM_CompositorOperation.h b/source/blender/compositor/operations/COM_CompositorOperation.h
index 3633bfd511c..63b87563852 100644
--- a/source/blender/compositor/operations/COM_CompositorOperation.h
+++ b/source/blender/compositor/operations/COM_CompositorOperation.h
@@ -111,7 +111,7 @@ class CompositorOperation : public NodeOperation {
void deinitExecution();
CompositorPriority getRenderPriority() const
{
- return COM_PRIORITY_MEDIUM;
+ return CompositorPriority::Medium;
}
void determineResolution(unsigned int resolution[2], unsigned int preferredResolution[2]);
void setUseAlphaInput(bool value)