Struct cuda_sys::cudart::cudaTextureDesc[][src]

#[repr(C)]
pub struct cudaTextureDesc { pub addressMode: [cudaTextureAddressMode; 3], pub filterMode: cudaTextureFilterMode, pub readMode: cudaTextureReadMode, pub sRGB: c_int, pub borderColor: [f32; 4], pub normalizedCoords: c_int, pub maxAnisotropy: c_uint, pub mipmapFilterMode: cudaTextureFilterMode, pub mipmapLevelBias: f32, pub minMipmapLevelClamp: f32, pub maxMipmapLevelClamp: f32, }

Fields

Trait Implementations

impl Debug for cudaTextureDesc
[src]

Formats the value using the given formatter. Read more

impl Copy for cudaTextureDesc
[src]

impl Clone for cudaTextureDesc
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations