about summary refs log tree commit diff
path: root/generator/pamtris/triangle.h
blob: 07e6d065e910b440a7e7ac435b93be5cee5193be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef TRIANGLE_H_INCLUDED
#define TRIANGLE_H_INCLUDED

#include <stdint.h>

#include "limits_pamtris.h"

struct boundary_info;
struct framebuffer_info;

void
draw_triangle(int32_t            xy[3][2],
              int32_t            attribs[3][MAX_NUM_ATTRIBS + 1],
              struct boundary_info *,
              struct framebuffer_info *);

#endif