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:
authorThomas Dinges <blender@dingto.org>2013-05-15 01:18:20 +0400
committerThomas Dinges <blender@dingto.org>2013-05-15 01:18:20 +0400
commit11707119ded9616b5cb81e1be8eff56727cb4299 (patch)
tree99843238e33030de20fca19ca6bb5c03bf413c50 /intern/cycles/device/device_network.h
parentd70497cefc0921a70d3a6179af7df58bb55f974c (diff)
Cycles:
* Code cleanup, remove unused "resolution" variable from the DeviceTask class, was never used.
Diffstat (limited to 'intern/cycles/device/device_network.h')
-rw-r--r--intern/cycles/device/device_network.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/cycles/device/device_network.h b/intern/cycles/device/device_network.h
index b74329888d3..10b8dadc35d 100644
--- a/intern/cycles/device/device_network.h
+++ b/intern/cycles/device/device_network.h
@@ -97,7 +97,7 @@ public:
archive & type & task.x & task.y & task.w & task.h;
archive & task.rgba & task.buffer & task.sample & task.num_samples;
- archive & task.resolution & task.offset & task.stride;
+ archive & task.offset & task.stride;
archive & task.shader_input & task.shader_output & task.shader_eval_type;
archive & task.shader_x & task.shader_w;
}
@@ -106,7 +106,7 @@ public:
{
archive & tile.x & tile.y & tile.w & tile.h;
archive & tile.start_sample & tile.num_samples & tile.sample;
- archive & tile.resolution & tile.offset & tile.stride;
+ archive & tile.offset & tile.stride;
archive & tile.buffer & tile.rng_state & tile.rgba;
}