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:16:16 +0300
committerJeroen Bakker <jeroen@blender.org>2021-03-19 19:11:47 +0300
commitb5f70d92c25693e05c8ecbd79c76e5bb35a7ceb5 (patch)
treea59f2ac2d3dc74671984db1dda4b3d39252790f0 /source/blender/compositor/operations/COM_ViewerOperation.h
parent9c2d4ffbc1d7b25acf865054441b204db04ce1dd (diff)
Cleanup: enum class ChunkOrdering.
Diffstat (limited to 'source/blender/compositor/operations/COM_ViewerOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_ViewerOperation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/compositor/operations/COM_ViewerOperation.h b/source/blender/compositor/operations/COM_ViewerOperation.h
index 680744c70d9..b4a7fbb4f4b 100644
--- a/source/blender/compositor/operations/COM_ViewerOperation.h
+++ b/source/blender/compositor/operations/COM_ViewerOperation.h
@@ -32,7 +32,7 @@ class ViewerOperation : public NodeOperation {
bool m_active;
float m_centerX;
float m_centerY;
- OrderOfChunks m_chunkOrder;
+ ChunkOrdering m_chunkOrder;
bool m_doDepthBuffer;
ImBuf *m_ibuf;
bool m_useAlphaInput;
@@ -82,7 +82,7 @@ class ViewerOperation : public NodeOperation {
{
this->m_centerY = centerY;
}
- void setChunkOrder(OrderOfChunks tileOrder)
+ void setChunkOrder(ChunkOrdering tileOrder)
{
this->m_chunkOrder = tileOrder;
}
@@ -94,7 +94,7 @@ class ViewerOperation : public NodeOperation {
{
return this->m_centerY;
}
- OrderOfChunks getChunkOrder() const
+ ChunkOrdering getChunkOrder() const
{
return this->m_chunkOrder;
}