File: LocalFBShared.h

package info (click to toggle)
ospray 3.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,048 kB
  • sloc: cpp: 80,569; ansic: 951; sh: 805; makefile: 170; python: 69
file content (46 lines) | stat: -rw-r--r-- 1,127 bytes parent folder | download | duplicates (2)
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
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright 2022 Intel Corporation
// SPDX-License-Identifier: Apache-2.0

#pragma once

#include "FrameBufferShared.h"

#ifdef __cplusplus
namespace ispc {
#endif // __cplusplus

// a Local FrameBuffer that stores all pixel values (color, depth,
// accum) in a plain 2D array of pixels (one array per component)
struct LocalFB
{
  FrameBuffer super; // superclass that we inherit from
  vec4f *colorBuffer;
  vec4f *varianceBuffer; // accumulates every other sample, for variance
                         // estimation / stopping
  float *depthBuffer;
  vec3f *normalBuffer;
  vec3f *albedoBuffer;
  vec2i numRenderTasks;
  uint32 *primitiveIDBuffer;
  uint32 *objectIDBuffer;
  uint32 *instanceIDBuffer;

#ifdef __cplusplus
  LocalFB()
      : colorBuffer(nullptr),
        varianceBuffer(nullptr),
        depthBuffer(nullptr),
        normalBuffer(nullptr),
        albedoBuffer(nullptr),
        numRenderTasks(0),
        primitiveIDBuffer(nullptr),
        objectIDBuffer(nullptr),
        instanceIDBuffer(nullptr)
  {
    super.type = FRAMEBUFFER_TYPE_LOCAL;
  }
};
} // namespace ispc
#else
};
#endif // __cplusplus