/*
 * $Id: bg_polygon.h,v 1.1 2003/02/07 18:15:44 wheeler Exp $
 *
 * $Log: bg_polygon.h,v $
 * Revision 1.1  2003/02/07 18:15:44  wheeler
 * Fox's version of libultra and friends.
 *
 * Revision 1.11  1996/11/21  05:57:05  hayakawa
 * Setup_TexRectModeRを別ファイルに移動
 *
 * Revision 1.10  1996/10/24  01:05:43  hayakawa
 * プロトタイプ追加
 *
 * Revision 1.9  1996/10/20  09:02:51  hayakawa
 * _LANGUAGE_C_PLUS_PLUS を __cplusplus に変更
 *
 */

#ifndef __BG_POLYGON_H_
#define __BG_POLYGON_H_

#include "ultra64.h"

#ifdef __cplusplus
extern "C" {
#endif

    void
bg_drawbitmap_tile(
    Gfx **glistpp,		/* ディスプレイリストへのポインタのポインタ */
    unsigned char *timg,	/* テクスチャイメージの先頭アドレス */
    int fmt,			/* テクセルのフォーマット(RGBA,CI,IA,I) */
    int siz,			/* テクセルのサイズ(4,8,16,32) */
    int xDot,			/* 幅 */
    int yDot,			/* 高さ */
    int xPos,			/* Ｘ中心座標 */
    int yPos			/* Ｙ座標 */
);

#ifdef __cplusplus
} /* extern "C" */
#endif

#endif
