diff options
| author | realtradam <[email protected]> | 2023-06-04 02:35:00 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2023-06-04 02:35:00 -0400 |
| commit | 35558b39040d37c939bd68b56985d6cb5385a451 (patch) | |
| tree | b10516557ba530d96799a8c4bed94b7644938811 /include/rodeo_types.h | |
| parent | 856ce67eb21f64d86ecf6bb3651985f10e6236c3 (diff) | |
| download | RodeoKit-35558b39040d37c939bd68b56985d6cb5385a451.tar.gz RodeoKit-35558b39040d37c939bd68b56985d6cb5385a451.zip | |
refactor to have graphics and windowing seperategfx-rewrite
Diffstat (limited to 'include/rodeo_types.h')
| -rw-r--r-- | include/rodeo_types.h | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/include/rodeo_types.h b/include/rodeo_types.h index f3c81fa..3763611 100644 --- a/include/rodeo_types.h +++ b/include/rodeo_types.h @@ -8,58 +8,6 @@ #include <stdint.h> #include <stddef.h> -typedef struct irodeo_texture_internal_t irodeo_texture_internal_t; -typedef irodeo_texture_internal_t *rodeo_texture_internal_p; - -typedef -union -{ - struct - { - float red; - float green; - float blue; - float alpha; - } - colors; - float array[4]; -} -rodeo_color_RGBAFloat_t; - -typedef -union -{ - struct - { - uint8_t red; - uint8_t green; - uint8_t blue; - uint8_t alpha; - } - colors; - uint32_t rgba; - uint8_t array[4]; -} -rodeo_color_RGBA8_t; - - -typedef -struct -{ - float x; - float y; - float z; - rodeo_color_RGBAFloat_t color; - //float red; - //float green; - //float blue; - //float alpha; - float texture_x; - float texture_y; - float texture_id; -} -rodeo_vertex_t; - typedef void (*rodeo_mainLoop_function)(void); @@ -74,15 +22,6 @@ struct } rodeo_rectangle_t; -typedef -struct -{ - rodeo_texture_internal_p internal_texture; - uint32_t width; - uint32_t height; -} -rodeo_texture_2d_t; - /* typedef struct { |
