blob: 7b26ee6ccb63417808161572a6f294d03c9890cc (
plain)
1
2
3
4
5
6
7
|
#pragma once
#include "ppusim/work.h"
/** @brief calculate color for pixel (`x`,`y`), and put into `unsigned short s[3]` */
void hh_ppusim_pixel(uint8_t* s, unsigned x, unsigned y);
|