Linear_Blit_To_Linear ported to C

This commit is contained in:
Justin Marshall
2020-06-06 20:11:36 -07:00
parent c4566e3062
commit ffe6688efa
3 changed files with 55 additions and 487 deletions
+1 -2
View File
@@ -12,8 +12,7 @@ int vqa_upscale_hack_width = 0;
int vqa_upscale_hack_height = 0;
byte* vqa_output_buffer = nullptr;
byte* VQA_Dropsample(const byte* in, int inwidth, int inheight,
int outwidth, int outheight) {
byte* VQA_Dropsample(const byte* in, int inwidth, int inheight, int outwidth, int outheight) {
int i, j, k;
const byte* inrow;
const byte* pix1;