From 8267db6ce5220422cc7d2e47568593eeb6c8005a Mon Sep 17 00:00:00 2001 From: samcake Date: Wed, 5 Apr 2017 14:19:00 -0700 Subject: [PATCH] Add a description of the Transaction class --- libraries/render/src/render/Scene.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/render/src/render/Scene.h b/libraries/render/src/render/Scene.h index cca72bb3c6..09a725205d 100644 --- a/libraries/render/src/render/Scene.h +++ b/libraries/render/src/render/Scene.h @@ -75,10 +75,10 @@ public: // THis is the total number of allocated items, this a threadsafe call size_t getNumItems() const { return _numAllocatedItems.load(); } - // Enqueue change batch to the scene + // Enqueue transaction to the scene void enqueueTransaction(const Transaction& transaction); - // Process the pending transactions equeued + // Process the pending transactions queued void processTransactionQueue(); // This next call are NOT threadsafe, you have to call them from the correct thread to avoid any potential issues