Separate filestream.h into OS specific implementation files (#190)

This commit is contained in:
goeiecool9999 2022-09-07 02:42:25 +02:00 committed by GitHub
parent f8b5024c09
commit e20bfd00ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
37 changed files with 550 additions and 471 deletions

View file

@ -1,4 +1,4 @@
#include "Common/filestream.h"
#include "Common/FileStream.h"
static void _bmp_write(FileStream* fs, sint32 width, sint32 height, uint32 bits, void* pixelData)
{

View file

@ -1,4 +1,4 @@
#include "Common/filestream.h"
#include "Common/FileStream.h"
#include <vector>
static bool tga_write_rgba(wchar_t* path, sint32 width, sint32 height, uint8* pixelData)