mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 06:21:26 +12:00
rsx: Fix RSXTexture.h spacing
This commit is contained in:
parent
7db13fdeff
commit
c0e121abef
1 changed files with 17 additions and 19 deletions
|
@ -21,19 +21,17 @@ namespace rsx
|
|||
bool cubemap() const;
|
||||
u8 border_type() const;
|
||||
rsx::texture_dimension dimension() const;
|
||||
/**
|
||||
* 2d texture can be either plane or cubemap texture depending on cubemap bit.
|
||||
* Since cubemap is a format per se in all gfx API this function directly returns
|
||||
* cubemap as a separate dimension.
|
||||
*/
|
||||
|
||||
// 2D texture can be either plane or cubemap texture depending on cubemap bit.
|
||||
// Since cubemap is a format per se in all gfx API this function directly returns
|
||||
// cubemap as a separate dimension.
|
||||
rsx::texture_dimension_extended get_extended_texture_dimension() const;
|
||||
u8 format() const;
|
||||
bool is_compressed_format() const;
|
||||
u16 mipmap() const;
|
||||
/**
|
||||
* mipmap() returns value from register which can be higher than the actual number of mipmap level.
|
||||
* This function clamp the result with the mipmap count allowed by texture size.
|
||||
*/
|
||||
|
||||
// mipmap() returns value from register which can be higher than the actual number of mipmap level.
|
||||
// This function clamp the result with the mipmap count allowed by texture size.
|
||||
u16 get_exact_mipmap_count() const;
|
||||
|
||||
// Address
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue