aboutsummaryrefslogtreecommitdiff
path: root/inc/scop.h
blob: 3c16af8c56dc3720f5de52d06dd734ca9f6c8c75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   scop.h                                             :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: charles <charles.cabergs@gmail.com>        +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2020/05/09 10:41:44 by charles           #+#    #+#             */
/*   Updated: 2020/05/11 10:33:29 by charles          ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef SCOP_H
# define SCOP_H

# include <unistd.h>
# include <fcntl.h>
# include <stdbool.h>
# include <stdlib.h>
# include <GL/glew.h>
# include <GLFW/glfw3.h>
# include "libft.h"
# include "libft_vec.h"

typedef struct
{
	float			*vertices;
	unsigned int	*indices;
	size_t			vertices_len;
	size_t			indices_len;
}					t_object;

typedef struct
{
	unsigned int	vertex_buf;
	unsigned int	index_buf;
	unsigned int	vertex_array;
	unsigned int	shader;
}					t_gl_state;

/*
** parse.c
*/

int					parse(char *filepath, t_object *object);

/*
** gl.c
*/

int					gl_state_init(t_gl_state *state, t_object *object);
void				gl_state_quit(t_gl_state *state, t_object *object);

/*
** error.c
*/

# define GL_CALL(x) error_clear(); \
                    x; \
                    error_check(#x, __FILE__, __LINE__)

void				error_clear(void);
void				error_check(char *code, char *filename, int line_num);

/*
** glfw.c
*/

GLFWwindow			*glfw_init(int width, int height);

/*
** shader.c
*/

unsigned int	shader_new(void);

#endif