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

COM_CPUDevice.h « intern « compositor « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dbaae763eede421bc2d7f1954e1440597e7fdddc (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
28
29
30
31
32
33
34
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2011 Blender Foundation. */

#pragma once

#include "COM_Device.h"

namespace blender::compositor {

/**
 * \brief class representing a CPU device.
 * \note for every hardware thread in the system a CPUDevice instance
 * will exist in the workscheduler.
 */
class CPUDevice : public Device {
 public:
  CPUDevice(int thread_id);

  /**
   * \brief execute a WorkPackage
   * \param work: the WorkPackage to execute
   */
  void execute(WorkPackage *work) override;

  int thread_id()
  {
    return thread_id_;
  }

 protected:
  int thread_id_;
};

}  // namespace blender::compositor