Commit 814208a7 authored by Diego Biurrun's avatar Diego Biurrun

tests: Mark some file-internal symbols as static.

parent b5a3c603
...@@ -160,8 +160,8 @@ static void pgmyuv_save(const char *filename, int w, int h, ...@@ -160,8 +160,8 @@ static void pgmyuv_save(const char *filename, int w, int h,
free(cr_tab); free(cr_tab);
} }
unsigned char *rgb_tab; static unsigned char *rgb_tab;
int width, height, wrap; static int width, height, wrap;
static void put_pixel(int x, int y, int r, int g, int b) static void put_pixel(int x, int y, int r, int g, int b)
{ {
...@@ -177,12 +177,12 @@ static void put_pixel(int x, int y, int r, int g, int b) ...@@ -177,12 +177,12 @@ static void put_pixel(int x, int y, int r, int g, int b)
p[2] = b; p[2] = b;
} }
unsigned char tab_r[256 * 256]; static unsigned char tab_r[256 * 256];
unsigned char tab_g[256 * 256]; static unsigned char tab_g[256 * 256];
unsigned char tab_b[256 * 256]; static unsigned char tab_b[256 * 256];
int h_cos[360]; static int h_cos[360];
int h_sin[360]; static int h_sin[360];
static int ipol(uint8_t *src, int x, int y) static int ipol(uint8_t *src, int x, int y)
{ {
......
...@@ -137,8 +137,8 @@ static void pgmyuv_save(const char *filename, int w, int h, ...@@ -137,8 +137,8 @@ static void pgmyuv_save(const char *filename, int w, int h,
free(cr_tab); free(cr_tab);
} }
unsigned char *rgb_tab; static unsigned char *rgb_tab;
int width, height, wrap; static int width, height, wrap;
static void put_pixel(int x, int y, int r, int g, int b) static void put_pixel(int x, int y, int r, int g, int b)
{ {
...@@ -200,9 +200,9 @@ typedef struct VObj { ...@@ -200,9 +200,9 @@ typedef struct VObj {
int r, g, b; int r, g, b;
} VObj; } VObj;
VObj objs[NB_OBJS]; static VObj objs[NB_OBJS];
unsigned int seed = 1; static unsigned int seed = 1;
static void gen_image(int num, int w, int h) static void gen_image(int num, int w, int h)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment