smntc
an in-memory multimodal graph database
Loading...
Searching...
No Matches
Frame.h
Go to the documentation of this file.
1#ifndef __FRAME_HEADER__
2#define __FRAME_HEADER__
3
4#include "Graph.h"
5
6struct Frame {
7 unsigned int vertex;
8 struct Graph *graph;
9 struct Colors *colors;
10};
11
12struct Pixel Frame_addPixel(struct Frame *this, unsigned int redValue, unsigned int greenValue, unsigned int blueValue, int *error);
13
14#endif
struct Pixel Frame_addPixel(struct Frame *this, unsigned int redValue, unsigned int greenValue, unsigned int blueValue, int *error)
Definition Frame.c:3
Definition Frame.h:6
struct Graph * graph
Definition Frame.h:8
struct Colors * colors
Definition Frame.h:9
unsigned int vertex
Definition Frame.h:7
Definition Graph.c:20
Definition Pixel.h:6