mirror of
https://github.com/griffi-gh/hUI.git
synced 2025-04-04 15:06:28 -05:00
add texture zero
This commit is contained in:
parent
537d138651
commit
c30bacf26c
|
@ -166,7 +166,7 @@ impl TextureAtlas {
|
||||||
pub(crate) fn new(size: UVec2) -> Self {
|
pub(crate) fn new(size: UVec2) -> Self {
|
||||||
assert_size(size);
|
assert_size(size);
|
||||||
let data_bytes = (size.x * size.y) as usize * RGBA_BYTES_PER_PIXEL;
|
let data_bytes = (size.x * size.y) as usize * RGBA_BYTES_PER_PIXEL;
|
||||||
Self {
|
let mut this = Self {
|
||||||
size,
|
size,
|
||||||
data: vec![0; data_bytes],
|
data: vec![0; data_bytes],
|
||||||
packer: DensePacker::new(
|
packer: DensePacker::new(
|
||||||
|
@ -177,7 +177,9 @@ impl TextureAtlas {
|
||||||
allocations: HashMap::default(),
|
allocations: HashMap::default(),
|
||||||
reuse_allocations: Vec::new(),
|
reuse_allocations: Vec::new(),
|
||||||
version: 0,
|
version: 0,
|
||||||
}
|
};
|
||||||
|
this.allocate_with_data(SourceTextureFormat::A8, &[255], 1);
|
||||||
|
this
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The version of the atlas, incremented every time the atlas is modified.
|
/// The version of the atlas, incremented every time the atlas is modified.
|
||||||
|
|
Loading…
Reference in a new issue