Welcome to mirror list, hosted at ThFree Co, Russian Federation.

output_driver.h « blender « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f1d941f07430de125cb0946ff48e6e24ed7b41b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* SPDX-License-Identifier: Apache-2.0
 * Copyright 2021-2022 Blender Foundation */

#pragma once

#include "MEM_guardedalloc.h"

#include "RNA_blender_cpp.h"

#include "session/output_driver.h"

CCL_NAMESPACE_BEGIN

class BlenderOutputDriver : public OutputDriver {
 public:
  explicit BlenderOutputDriver(BL::RenderEngine &b_engine);
  ~BlenderOutputDriver();

  virtual void write_render_tile(const Tile &tile) override;
  virtual bool update_render_tile(const Tile &tile) override;
  virtual bool read_render_tile(const Tile &tile) override;

 protected:
  BL::RenderEngine b_engine_;
};

CCL_NAMESPACE_END