blob: 8e5d0c7b48281e01080551c10ce5701a10e1130a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#define QSSG_OIT_NONE 0
#define QSSG_OIT_WEIGHTED_BLENDED 1
#define QSSG_OIT_SIMPLE_LIST 2
#define QSSG_OIT_LINKED_LIST 3
#define QSSG_OIT_INTERLOCK 4
#define QSSG_OIT_SPINLOCK 5
#ifndef QSSG_OIT_METHOD
#define QSSG_OIT_METHOD QSSG_OIT_NONE
#endif
|