view libmlk-core/core/font.h @ 298:196264679079

misc: remove usage of bool
author David Demelier <markand@malikania.fr>
date Wed, 10 Mar 2021 18:49:08 +0100
parents 08ab73b32832
children d01e83210ca2
line wrap: on
line source

/*
 * font.h -- basic font management
 *
 * Copyright (c) 2020 David Demelier <markand@malikania.fr>
 *
 * 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.
 */

#ifndef MOLKO_CORE_FONT_H
#define MOLKO_CORE_FONT_H

#include <stddef.h>

#include "core.h"

struct texture;

enum font_style {
	FONT_STYLE_ANTIALIASED,
	FONT_STYLE_NONE
};

struct font {
	enum font_style style;
	void *handle;
};

CORE_BEGIN_DECLS

int
font_open(struct font *, const char *, unsigned int);

int
font_openmem(struct font *, const void *, size_t, unsigned int);

int
font_ok(const struct font *);

int
font_render(struct font *, struct texture *, const char *, unsigned int);

unsigned int
font_height(const struct font *);

int
font_query(const struct font *, const char *, unsigned int *, unsigned int *);

void
font_finish(struct font *);

CORE_END_DECLS

#endif /* !MOLKO_CORE_FONT_H */