clippy: Fix redundant field names warnings (#31793)

This commit is contained in:
Oluwatobi Sofela 2024-03-21 00:05:29 +01:00 committed by GitHub
parent f55d1d288e
commit 2789e98876
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
97 changed files with 285 additions and 314 deletions

View file

@ -75,7 +75,7 @@ impl WebGLTexture {
) -> Self {
Self {
webgl_object: WebGLObject::new_inherited(context),
id: id,
id,
target: Cell::new(None),
is_deleted: Cell::new(false),
owner: owner
@ -163,11 +163,11 @@ impl WebGLTexture {
data_type: Option<TexDataType>,
) -> WebGLResult<()> {
let image_info = ImageInfo {
width: width,
height: height,
depth: depth,
internal_format: internal_format,
data_type: data_type,
width,
height,
depth,
internal_format,
data_type,
};
let face_index = self.face_index_for_target(&target);