CMSC23700 Common Code Library
Support code for CS23700 programming projects
Loading...
Searching...
No Matches
cs237::Application::SamplerInfo Struct Reference

#include <cs237-application.hpp>

Public Member Functions

 SamplerInfo ()
 
 SamplerInfo (vk::Filter magF, vk::Filter minF, vk::SamplerMipmapMode mm, vk::SamplerAddressMode am, vk::BorderColor color)
 sampler info for 1D texture
 
 SamplerInfo (vk::Filter magF, vk::Filter minF, vk::SamplerMipmapMode mm, vk::SamplerAddressMode am1, vk::SamplerAddressMode am2, vk::BorderColor color)
 sampler info for 2D texture
 

Public Attributes

vk::Filter magFilter
 
vk::Filter minFilter
 
vk::SamplerMipmapMode mipmapMode
 
vk::SamplerAddressMode addressModeU
 
vk::SamplerAddressMode addressModeV
 
vk::SamplerAddressMode addressModeW
 
vk::BorderColor borderColor
 

Detailed Description

Information for creating a sampler object. This is more limited than Vulkan's vk::SamplerCreateInfo structure, but should cover the common cases used in this class.

Constructor & Destructor Documentation

◆ SamplerInfo() [1/3]

cs237::Application::SamplerInfo::SamplerInfo ( )
inline

◆ SamplerInfo() [2/3]

cs237::Application::SamplerInfo::SamplerInfo ( vk::Filter  magF,
vk::Filter  minF,
vk::SamplerMipmapMode  mm,
vk::SamplerAddressMode  am,
vk::BorderColor  color 
)
inline

sampler info for 1D texture

◆ SamplerInfo() [3/3]

cs237::Application::SamplerInfo::SamplerInfo ( vk::Filter  magF,
vk::Filter  minF,
vk::SamplerMipmapMode  mm,
vk::SamplerAddressMode  am1,
vk::SamplerAddressMode  am2,
vk::BorderColor  color 
)
inline

sampler info for 2D texture

Member Data Documentation

◆ addressModeU

vk::SamplerAddressMode cs237::Application::SamplerInfo::addressModeU

◆ addressModeV

vk::SamplerAddressMode cs237::Application::SamplerInfo::addressModeV

◆ addressModeW

vk::SamplerAddressMode cs237::Application::SamplerInfo::addressModeW

◆ borderColor

vk::BorderColor cs237::Application::SamplerInfo::borderColor

◆ magFilter

vk::Filter cs237::Application::SamplerInfo::magFilter

◆ minFilter

vk::Filter cs237::Application::SamplerInfo::minFilter

◆ mipmapMode

vk::SamplerMipmapMode cs237::Application::SamplerInfo::mipmapMode

The documentation for this struct was generated from the following file: