aboutsummaryrefslogtreecommitdiffstats
path: root/c_src/sdl_gl.c
blob: 71fef6aa610c19abd1b656d3ad53c91063e6958b (plain) (blame)
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
// Copyright (c) 2015, Loïc Hoguin <[email protected]>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice appear in all copies.
//
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

#include "esdl2.h"

void dtor_GLContext(ErlNifEnv* env, void* obj)
{
	SDL_GL_DeleteContext(NIF_RES_GET(GLContext, obj));
// @todo	enif_release_resource(NIF_RES_DEP(GLContext, obj));
}

// gl_create_context

NIF_CALL_HANDLER(thread_gl_create_context)
{
	SDL_GLContext context;
	ERL_NIF_TERM term;

	context = SDL_GL_CreateContext(args[0]);
	if (!context)
		return sdl_error_tuple(env);

	enif_keep_resource(args[0]);

// @todo	NIF_RES_TO_TERM_WITH_DEP(GLContext, context, term, args[0]);
	NIF_RES_TO_TERM(GLContext, context, term);

	return enif_make_tuple2(env,
		atom_ok,
		term
	);
}

NIF_FUNCTION(gl_create_context)
{
	void* window_res;

	BADARG_IF(!enif_get_resource(env, argv[0], res_Window, &window_res));

	return nif_thread_call(env, thread_gl_create_context, 1,
		NIF_RES_GET(Window, window_res));
}

// gl_swap_window

NIF_CAST_HANDLER(thread_gl_swap_window)
{
	SDL_GL_SwapWindow(args[0]);
}

NIF_FUNCTION(gl_swap_window)
{
	void* window_res;

	BADARG_IF(!enif_get_resource(env, argv[0], res_Window, &window_res));

	return nif_thread_cast(env, thread_gl_swap_window, 1,
		NIF_RES_GET(Window, window_res));
}