Kaynağa Gözat

Remove unused type

Karl Zylinski 2 ay önce
ebeveyn
işleme
2113c2e0e3
2 değiştirilmiş dosya ile 3 ekleme ve 6 silme
  1. 3 3
      karl2d.doc.odin
  2. 0 3
      karl2d.odin

+ 3 - 3
karl2d.doc.odin

@@ -313,6 +313,9 @@ destroy_render_texture :: proc(render_texture: Render_Texture)
 // `create_render_texture`. Pass `nil` to resume drawing onto the screen.
 set_render_texture :: proc(render_texture: Maybe(Render_Texture))
 
+//-------//
+// FONTS //
+//-------//
 load_font_from_file :: proc(filename: string) -> Font_Handle
 
 load_font_from_bytes :: proc(data: []u8) -> Font_Handle
@@ -386,9 +389,6 @@ Vec4 :: [4]f32
 
 Mat4 :: matrix[4,4]f32
 
-// A two dimensional vector of integer numeric type.
-Vec2i :: [2]int
-
 // A rectangle that sits at position (x, y) and has size (w, h).
 Rect :: struct {
 	x, y: f32,

+ 0 - 3
karl2d.odin

@@ -1442,9 +1442,6 @@ Vec4 :: [4]f32
 
 Mat4 :: matrix[4,4]f32
 
-// A two dimensional vector of integer numeric type.
-Vec2i :: [2]int
-
 // A rectangle that sits at position (x, y) and has size (w, h).
 Rect :: struct {
 	x, y: f32,