Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/integrator/pass_accessor_gpu.cpp
| Show All 10 Lines | |||||
| * distributed under the License is distributed on an "AS IS" BASIS, | * distributed under the License is distributed on an "AS IS" BASIS, | ||||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||||
| * See the License for the specific language governing permissions and | * See the License for the specific language governing permissions and | ||||
| * limitations under the License. | * limitations under the License. | ||||
| */ | */ | ||||
| #include "integrator/pass_accessor_gpu.h" | #include "integrator/pass_accessor_gpu.h" | ||||
| #include "device/device_queue.h" | #include "device/queue.h" | ||||
| #include "render/buffers.h" | #include "session/buffers.h" | ||||
| #include "util/util_logging.h" | #include "util/log.h" | ||||
| CCL_NAMESPACE_BEGIN | CCL_NAMESPACE_BEGIN | ||||
| PassAccessorGPU::PassAccessorGPU(DeviceQueue *queue, | PassAccessorGPU::PassAccessorGPU(DeviceQueue *queue, | ||||
| const PassAccessInfo &pass_access_info, | const PassAccessInfo &pass_access_info, | ||||
| float exposure, | float exposure, | ||||
| int num_samples) | int num_samples) | ||||
| : PassAccessor(pass_access_info, exposure, num_samples), queue_(queue) | : PassAccessor(pass_access_info, exposure, num_samples), queue_(queue) | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||