aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.OpenGL/Image/IntermmediatePool.cs
blob: 64ee73fbe2c2f47df3f6b43b6c535bd31ca75b75 (plain) (blame)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
using Ryujinx.Graphics.GAL;
using System;
using System.Collections.Generic;

namespace Ryujinx.Graphics.OpenGL.Image
{
    class IntermediatePool : IDisposable
    {
        private readonly OpenGLRenderer _renderer;
        private readonly List<TextureView> _entries;

        public IntermediatePool(OpenGLRenderer renderer)
        {
            _renderer = renderer;
            _entries = new List<TextureView>();
        }

        public TextureView GetOrCreateWithAtLeast(
            Target target,
            int blockWidth,
            int blockHeight,
            int bytesPerPixel,
            Format format,
            int width,
            int height,
            int depth,
            int levels,
            int samples)
        {
            TextureView entry;

            for (int i = 0; i < _entries.Count; i++)
            {
                entry = _entries[i];

                if (entry.Target == target && entry.Format == format && entry.Info.Samples == samples)
                {
                    if (entry.Width < width ||
                        entry.Height < height ||
                        entry.Info.Depth < depth ||
                        entry.Info.Levels < levels)
                    {
                        width = Math.Max(width, entry.Width);
                        height = Math.Max(height, entry.Height);
                        depth = Math.Max(depth, entry.Info.Depth);
                        levels = Math.Max(levels, entry.Info.Levels);

                        entry.Dispose();
                        entry = CreateNew(target, blockWidth, blockHeight, bytesPerPixel, format, width, height, depth, levels, samples);
                        _entries[i] = entry;
                    }

                    return entry;
                }
            }

            entry = CreateNew(target, blockWidth, blockHeight, bytesPerPixel, format, width, height, depth, levels, samples);
            _entries.Add(entry);

            return entry;
        }

        private TextureView CreateNew(
            Target target,
            int blockWidth,
            int blockHeight,
            int bytesPerPixel,
            Format format,
            int width,
            int height,
            int depth,
            int levels,
            int samples)
        {
            return (TextureView)_renderer.CreateTexture(new TextureCreateInfo(
                width,
                height,
                depth,
                levels,
                samples,
                blockWidth,
                blockHeight,
                bytesPerPixel,
                format,
                DepthStencilMode.Depth,
                target,
                SwizzleComponent.Red,
                SwizzleComponent.Green,
                SwizzleComponent.Blue,
                SwizzleComponent.Alpha));
        }

        public void Dispose()
        {
            foreach (TextureView entry in _entries)
            {
                entry.Dispose();
            }

            _entries.Clear();
        }
    }
}