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

patch_table.h « subd « cycles « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3814e88e8a503ff3fcaffdbd3bb695d54c33422 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* SPDX-License-Identifier: Apache-2.0
 * Copyright 2011-2022 Blender Foundation */

#ifndef __SUBD_PATCH_TABLE_H__
#define __SUBD_PATCH_TABLE_H__

#include "util/array.h"
#include "util/types.h"

#ifdef WITH_OPENSUBDIV
#  ifdef _MSC_VER
#    include "iso646.h"
#  endif

#  include <opensubdiv/far/patchTable.h>
#endif

CCL_NAMESPACE_BEGIN

#ifdef WITH_OPENSUBDIV
using namespace OpenSubdiv;
#else
/* forward declare for when OpenSubdiv is unavailable */
namespace Far {
struct PatchTable;
}
#endif

#define PATCH_ARRAY_SIZE 4
#define PATCH_PARAM_SIZE 2
#define PATCH_HANDLE_SIZE 3
#define PATCH_NODE_SIZE 1

struct PackedPatchTable {
  array<uint> table;

  size_t num_arrays;
  size_t num_indices;
  size_t num_patches;
  size_t num_nodes;

  /* calculated size from num_* members */
  size_t total_size();

  void pack(Far::PatchTable *patch_table, int offset = 0);
  void copy_adjusting_offsets(uint *dest, int doffset);
};

CCL_NAMESPACE_END

#endif /* __SUBD_PATCH_TABLE_H__ */