Skip to content

Commit

Permalink
Doc
Browse files Browse the repository at this point in the history
  • Loading branch information
asny committed Feb 26, 2024
1 parent a2e7a8c commit baeb62e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/texture/texture2d.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ pub struct Texture2D {
/// The way the pixel data is interpolated when the texture is close
pub mag_filter: Interpolation,
/// Specifies whether mipmaps should be created for this texture and what type of interpolation to use between the two closest mipmaps.
/// Note, however, that the mipmaps only will be created if the width and height of the texture are power of two.
pub mip_map_filter: Option<Interpolation>,
/// Determines how the texture is sampled outside the [0..1] s coordinate range (the first value of the uv coordinates).
pub wrap_s: Wrapping,
Expand Down
1 change: 0 additions & 1 deletion src/texture/texture3d.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ pub struct Texture3D {
/// The way the pixel data is interpolated when the texture is close
pub mag_filter: Interpolation,
/// Specifies whether mipmaps should be created for this texture and what type of interpolation to use between the two closest mipmaps.
/// Note, however, that the mipmaps only will be created if the width and height of the texture are power of two.
pub mip_map_filter: Option<Interpolation>,
/// Determines how the texture is sampled outside the [0..1] s coordinate range (the first value of the uvw coordinates).
pub wrap_s: Wrapping,
Expand Down

0 comments on commit baeb62e

Please sign in to comment.