Skip to content

Feat/textures asset parser #158

Feat/textures asset parser

Feat/textures asset parser #158

Triggered via pull request January 25, 2024 14:18
Status Success
Total duration 2m 25s
Artifacts

test.yml

on: pull_request
ubuntu / nightly / direct-minimal-versions
43s
ubuntu / nightly / direct-minimal-versions
Matrix: os-check
Matrix: required
Fit to window
Zoom out
Zoom in

Annotations

6 warnings
this expression creates a reference which is immediately dereferenced by the compiler: engine/src/asset/texture/dat/texture.rs#L50
warning: this expression creates a reference which is immediately dereferenced by the compiler --> engine/src/asset/texture/dat/texture.rs:50:64 | 50 | let (input, mip_4) = Texture::parser(&(&size / 8))(&input)?; | ^^^^^^ help: change this to: `input` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
this expression creates a reference which is immediately dereferenced by the compiler: engine/src/asset/texture/dat/texture.rs#L49
warning: this expression creates a reference which is immediately dereferenced by the compiler --> engine/src/asset/texture/dat/texture.rs:49:64 | 49 | let (input, mip_3) = Texture::parser(&(&size / 4))(&input)?; | ^^^^^^ help: change this to: `input` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
this expression creates a reference which is immediately dereferenced by the compiler: engine/src/asset/texture/dat/texture.rs#L48
warning: this expression creates a reference which is immediately dereferenced by the compiler --> engine/src/asset/texture/dat/texture.rs:48:64 | 48 | let (input, mip_2) = Texture::parser(&(&size / 2))(&input)?; | ^^^^^^ help: change this to: `input` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
this expression creates a reference which is immediately dereferenced by the compiler: engine/src/asset/texture/dat/texture.rs#L47
warning: this expression creates a reference which is immediately dereferenced by the compiler --> engine/src/asset/texture/dat/texture.rs:47:57 | 47 | let (input, mip_1) = Texture::parser(&size)(&input)?; | ^^^^^^ help: change this to: `input` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow = note: `#[warn(clippy::needless_borrow)]` on by default
docs for function returning `Result` missing `# Errors` section: engine/src/asset/pack_file.rs#L26
warning: docs for function returning `Result` missing `# Errors` section --> engine/src/asset/pack_file.rs:26:5 | 26 | pub fn new(input: &[u8]) -> Result<Self> { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_errors_doc = note: `#[warn(clippy::missing_errors_doc)]` implied by `#[warn(clippy::pedantic)]`
docs for function which may panic missing `# Panics` section: engine/src/asset/color_map.rs#L17
warning: docs for function which may panic missing `# Panics` section --> engine/src/asset/color_map.rs:17:5 | 17 | pub fn from_12_bit(color: u16) -> Self { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | note: first possible panic found here --> engine/src/asset/color_map.rs:19:9 | 19 | assert!(color <= 0xFFF, "12 bit color is smaller than 0xFFF"); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_panics_doc note: the lint level is defined here --> engine/src/lib.rs:1:9 | 1 | #![warn(clippy::pedantic)] | ^^^^^^^^^^^^^^^^ = note: `#[warn(clippy::missing_panics_doc)]` implied by `#[warn(clippy::pedantic)]`