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:
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;
}