Half way through debugging texture problems
This commit is contained in:
@ -188,6 +188,11 @@ void Texture::buffer(struct ColorU8 pixels[]) {
|
||||
this->bufferRaw((void*)pixels);
|
||||
}
|
||||
|
||||
void Texture::buffer(struct Color pixels[]) {
|
||||
this->bufferRaw((void*)pixels);
|
||||
// assertUnreachable();
|
||||
}
|
||||
|
||||
void Texture::buffer(uint8_t pixels[]) {
|
||||
this->bufferRaw((void*)pixels);
|
||||
}
|
||||
|
@ -33,6 +33,7 @@ namespace Dawn {
|
||||
void fill(uint8_t) override;
|
||||
bool_t isReady() override;
|
||||
void buffer(struct ColorU8 pixels[]) override;
|
||||
void buffer(struct Color pixels[]);
|
||||
void buffer(uint8_t pixels[]) override;
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user