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-04-02 17:11:13 +0300
committerJeroen Bakker <jeroen@blender.org>2021-04-02 17:11:13 +0300
commitb6ab1107c20228d441a6d992eb11c639ed2ce1d0 (patch)
treea15f14a3ca58854ca93d5cec315ad754e8ce024d /source/blender/compositor/intern/COM_CompositorContext.h
parent5a491adc17deb59f7c54fa60e5e8344b1daad359 (diff)
Cleanup: Added leading `e` to enum types.
Diffstat (limited to 'source/blender/compositor/intern/COM_CompositorContext.h')
-rw-r--r--source/blender/compositor/intern/COM_CompositorContext.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/intern/COM_CompositorContext.h b/source/blender/compositor/intern/COM_CompositorContext.h
index bdb1d4614f8..e6164246bdd 100644
--- a/source/blender/compositor/intern/COM_CompositorContext.h
+++ b/source/blender/compositor/intern/COM_CompositorContext.h
@@ -48,7 +48,7 @@ class CompositorContext {
* This field is initialized in ExecutionSystem and must only be read from that point on.
* \see ExecutionSystem
*/
- CompositorQuality m_quality;
+ eCompositorQuality m_quality;
Scene *m_scene;
@@ -205,7 +205,7 @@ class CompositorContext {
/**
* \brief set the quality
*/
- void setQuality(CompositorQuality quality)
+ void setQuality(eCompositorQuality quality)
{
this->m_quality = quality;
}
@@ -213,7 +213,7 @@ class CompositorContext {
/**
* \brief get the quality
*/
- CompositorQuality getQuality() const
+ eCompositorQuality getQuality() const
{
return this->m_quality;
}