mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-23 15:50:49 +01:00
[apps/graph][apps/sequence] ValuesController memoization buffer does not
require the same size for Sequence and Graph
This commit is contained in:
committed by
LeaNumworks
parent
dc3c67a2d2
commit
60ad096956
@@ -263,7 +263,7 @@ void ValuesController::resetMemoization() {
|
||||
}
|
||||
|
||||
void ValuesController::moveMemoizedBuffer(int destinationI, int destinationJ, int sourceI, int sourceJ) {
|
||||
strlcpy(memoizedBufferAtIndex(destinationJ*numberOfMemoizedColumn() + destinationI), memoizedBufferAtIndex(sourceJ*numberOfMemoizedColumn() + sourceI), k_valuesCellBufferSize);
|
||||
strlcpy(memoizedBufferAtIndex(destinationJ*numberOfMemoizedColumn() + destinationI), memoizedBufferAtIndex(sourceJ*numberOfMemoizedColumn() + sourceI), valuesCellBufferSize());
|
||||
}
|
||||
|
||||
char * ValuesController::memoizedBufferForCell(int i, int j) {
|
||||
|
||||
Reference in New Issue
Block a user