This repository has been archived on 2022-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
LEFTONE/core/loshader/cinescope.h
falsycat 80b3b82332 [RELEASE] u22-v04
This version is submitted for U22 final presentation. (squashed 158 commits)
2021-02-07 00:00:00 +00:00

38 lines
765 B
C

#pragma once
#include <stddef.h>
#include "util/math/vector.h"
#include "./single.h"
#include "./uniblock.h"
typedef struct {
loshader_single_drawer_t super;
} loshader_cinescope_drawer_t;
typedef struct {
float size;
vec4_t color;
} loshader_cinescope_drawer_param_t;
void
loshader_cinescope_drawer_initialize(
loshader_cinescope_drawer_t* drawer,
const loshader_uniblock_t* uniblock
);
#define loshader_cinescope_drawer_deinitialize(drawer) \
loshader_single_drawer_deinitialize(&(drawer)->super)
void
loshader_cinescope_drawer_set_param(
loshader_cinescope_drawer_t* drawer,
const loshader_cinescope_drawer_param_t* param
);
void
loshader_cinescope_drawer_draw(
const loshader_cinescope_drawer_t* drawer
);