17 lines
356 B
C
17 lines
356 B
C
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "dusk.h"
|
|
|
|
#define DISPLAY_STATE_FLAG_CULL (1 << 0)
|
|
#define DISPLAY_STATE_FLAG_DEPTH_TEST (1 << 1)
|
|
#define DISPLAY_STATE_FLAG_BLEND (1 << 2)
|
|
|
|
typedef struct {
|
|
uint8_t flags;
|
|
} displaystate_t; |