Compare commits
No commits in common. "2e2290cc8cc81a96cd6f5571a638a1c244e970fe" and "48eb7c91ddf334917d88d36e067daf5ec0110a5c" have entirely different histories.
2e2290cc8c
...
48eb7c91dd
@ -76,7 +76,7 @@ constexpr uint32_t fb_concat(uint32_t num) { return (num & 0x3) << 4; }
|
||||
namespace fb_depth {
|
||||
constexpr uint32_t _0555_rgb_16bit = 0 << 2;
|
||||
|
||||
constexpr uint32_t _565_rgb_16bit = 1 << 2;
|
||||
constexpr uint32_t _0565_rgb_16bit = 1 << 2;
|
||||
|
||||
constexpr uint32_t _888_rgb_24bit_packed = 2 << 2;
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
#include <fstream>
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
#include <bit>
|
||||
|
||||
#include "primary_volume_descriptor.hpp"
|
||||
#include "directory_record.hpp"
|
||||
@ -16,8 +15,6 @@ void write_field(const uint8_t * s, const int len)
|
||||
|
||||
int main()
|
||||
{
|
||||
using namespace iso9660;
|
||||
|
||||
std::ifstream ifs("test.iso");
|
||||
std::string content( (std::istreambuf_iterator<char>(ifs) ),
|
||||
(std::istreambuf_iterator<char>() ) );
|
||||
|
@ -14,7 +14,7 @@ FREETYPE_LDFLAGS = $(shell pkg-config --libs freetype2)
|
||||
FTDI_CFLAGS = $(shell pkg-config --cflags libftdi1) -I.
|
||||
FTDI_LDFLAGS = $(shell pkg-config --libs libftdi1)
|
||||
|
||||
all: ftdi_transfer
|
||||
all: ttf_outline
|
||||
|
||||
crc32.o: crc32.c
|
||||
$(CC) -std=gnu2x $(CFLAGS) -I. -c $< -o $@
|
||||
|
Loading…
x
Reference in New Issue
Block a user