diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-06-28 12:53:17 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-28 12:53:17 -0400 |
| commit | b60b70e86d7c32b06a7580ddc286279a83587e11 (patch) | |
| tree | ea6092ba2bda4b2f685926ba133faedd5c65fa57 /src/video_core/textures | |
| parent | 0fe44071f8fc8c49fcd885e39f2e914846450733 (diff) | |
| parent | ddcc95833660c57647d3e99dad76ecfa3b86ee8d (diff) | |
Merge pull request #10837 from liamwhite/mali-support
android: Mali support
Diffstat (limited to 'src/video_core/textures')
| -rw-r--r-- | src/video_core/textures/bcn.cpp | 1 | ||||
| -rw-r--r-- | src/video_core/textures/bcn.h | 9 |
2 files changed, 4 insertions, 6 deletions
diff --git a/src/video_core/textures/bcn.cpp b/src/video_core/textures/bcn.cpp index 671212a49..16ddbe320 100644 --- a/src/video_core/textures/bcn.cpp +++ b/src/video_core/textures/bcn.cpp @@ -3,7 +3,6 @@ #include <stb_dxt.h> #include <string.h> - #include "common/alignment.h" #include "video_core/textures/bcn.h" #include "video_core/textures/workers.h" diff --git a/src/video_core/textures/bcn.h b/src/video_core/textures/bcn.h index 6464af885..d5d2a16c9 100644 --- a/src/video_core/textures/bcn.h +++ b/src/video_core/textures/bcn.h @@ -4,14 +4,13 @@ #pragma once #include <span> -#include <stdint.h> + +#include "common/common_types.h" namespace Tegra::Texture::BCN { -void CompressBC1(std::span<const uint8_t> data, uint32_t width, uint32_t height, uint32_t depth, - std::span<uint8_t> output); +void CompressBC1(std::span<const u8> data, u32 width, u32 height, u32 depth, std::span<u8> output); -void CompressBC3(std::span<const uint8_t> data, uint32_t width, uint32_t height, uint32_t depth, - std::span<uint8_t> output); +void CompressBC3(std::span<const u8> data, u32 width, u32 height, u32 depth, std::span<u8> output); } // namespace Tegra::Texture::BCN |
