aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/compute/skc/platforms/cl_12/path_builder_cl_12.h
blob: 20bb13cbdf058f29de12fa8d64d5e9e54b8d8bdf (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
/*
 * Copyright 2017 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can
 * be found in the LICENSE file.
 *
 */

#ifndef PATH_BUILDER_CL_12_ONCE
#define PATH_BUILDER_CL_12_ONCE

//
//
//

#include "block.h"

//
// A tag type that fits into the block id tag bitfield
//

typedef enum skc_cmd_paths_copy_tag {

  SKC_CMD_PATHS_COPY_TAG_SEGS,
  SKC_CMD_PATHS_COPY_TAG_NODE,
  SKC_CMD_PATHS_COPY_TAG_HEAD,

  SKC_CMD_PATHS_COPY_TAG_COUNT

} skc_cmd_paths_copy_tag;


SKC_STATIC_ASSERT(SKC_CMD_PATHS_COPY_TAG_COUNT <= SKC_BLOCK_ID_TAG_COUNT);

//
//
//

#endif

//
//
//