summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibSoftGPU/Sampler.h
blob: 9ac149d79a003ea7eb41cace698837b7e2f761a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * Copyright (c) 2021, Stephan Unverwerth <s.unverwerth@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/RefPtr.h>
#include <AK/SIMD.h>
#include <LibGPU/SamplerConfig.h>
#include <LibGfx/Vector2.h>
#include <LibGfx/Vector4.h>
#include <LibSoftGPU/Image.h>

namespace SoftGPU {

class Sampler final {
public:
    Vector4<AK::SIMD::f32x4> sample_2d(Vector2<AK::SIMD::f32x4> const& uv) const;

    void set_config(GPU::SamplerConfig const& config) { m_config = config; }
    GPU::SamplerConfig const& config() const { return m_config; }

private:
    Vector4<AK::SIMD::f32x4> sample_2d_lod(Vector2<AK::SIMD::f32x4> const& uv, AK::SIMD::u32x4 level, GPU::TextureFilter) const;

    GPU::SamplerConfig m_config;
};

}