mirror of
https://github.com/MobileGL-Dev/MobileGL
synced 2026-09-08 04:08:32 +09:00
88 lines
4.1 KiB
C++
88 lines
4.1 KiB
C++
// MobileGL - MobileGL/MG_State/GLState/TextureState/TextureState.h
|
|
// Copyright (c) 2025-2026 MobileGL-Dev
|
|
// Licensed under the GNU Lesser General Public License v3.0:
|
|
// https://www.gnu.org/licenses/gpl-3.0.txt
|
|
// https://www.gnu.org/licenses/lgpl-3.0.txt
|
|
// SPDX-License-Identifier: LGPL-3.0-only
|
|
// End of Source File Header
|
|
|
|
#pragma once
|
|
#include <Includes.h>
|
|
#include <MG_Util/Miscellany/IndexGenerator.h>
|
|
#include "MG_State/GLState/TextureState/TextureObject.h"
|
|
#include "MG_Util/Types.h"
|
|
#include "TextureUnit.h"
|
|
|
|
namespace MobileGL::MG_State::GLState {
|
|
struct ImageTextureBinding {
|
|
SharedPtr<ITextureObject> Texture;
|
|
GLint Level = 0;
|
|
GLboolean Layered = GL_FALSE;
|
|
GLint Layer = 0;
|
|
GLenum Access = GL_READ_ONLY;
|
|
GLenum Format = GL_R8;
|
|
Uint16 Version = 0;
|
|
|
|
void Bind(SharedPtr<ITextureObject> texture, GLint level, GLboolean layered, GLint layer, GLenum access,
|
|
GLenum format) {
|
|
Texture = Move(texture);
|
|
Level = level;
|
|
Layered = layered;
|
|
Layer = layer;
|
|
Access = access;
|
|
Format = format;
|
|
++Version;
|
|
}
|
|
};
|
|
|
|
class TextureState {
|
|
public:
|
|
// Capacity of the combined texture-unit state arrays (indexed by glActiveTexture unit).
|
|
static constexpr int MAX_TEXTURE_IMAGE_UNITS = 192;
|
|
// Per-stage sampler limit advertised through GL_MAX_TEXTURE_IMAGE_UNITS /
|
|
// GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS. Held at the desktop-driver value (32) so it never exceeds
|
|
// host-side fixed arrays sized off this query -- e.g. Minecraft's 128-entry Blaze3D
|
|
// GlStateManager.TEXTURES[], which Iris iterates over in CompositeRenderer.renderAll.
|
|
static constexpr int MAX_PER_STAGE_TEXTURE_IMAGE_UNITS = 32;
|
|
|
|
TextureState();
|
|
void GenerateNames(Uint number, Vector<Uint>& textures);
|
|
const SharedPtr<ITextureObject>& CreateTextureObject(Uint index, TextureTarget target);
|
|
const SharedPtr<ITextureObject>& GetTextureObject(Uint index);
|
|
TextureUnit& GetUnitObject(Int unit);
|
|
ImageTextureBinding& GetImageTextureBinding(Int unit);
|
|
const ImageTextureBinding& GetImageTextureBinding(Int unit) const;
|
|
Int GetActiveTextureUnit() const;
|
|
void SetActiveTextureUnit(Int unit);
|
|
void MarkTextureObjectForDeletion(Uint index);
|
|
Bool ValidateName(Uint index) const;
|
|
Bool ValidateTextureObject(Uint index) const;
|
|
|
|
// High-water mark of texture units ever touched by a texture or sampler bind.
|
|
// Units above it have provably-empty binding slots, so per-draw backend scans
|
|
// can stop there instead of walking all MAX_TEXTURE_IMAGE_UNITS units.
|
|
void NoteUnitTouched(Int unit) {
|
|
if (unit > m_maxTouchedUnit && unit < MAX_TEXTURE_IMAGE_UNITS) m_maxTouchedUnit = unit;
|
|
// Every texture/sampler bind entry point (glBindTexture / glBindTextureUnit /
|
|
// glBindTextures / glBindSampler) routes through here, so bumping the generation here
|
|
// - plus in MarkTextureObjectForDeletion for delete-unbind - covers every change to
|
|
// which texture is bound at which unit. A backend that has cached the per-draw
|
|
// sampled-texture set can compare this against a snapshot to skip re-resolving it when
|
|
// no bind changed (the block atlas + lightmap stay bound across a whole terrain batch).
|
|
++m_textureBindGeneration;
|
|
}
|
|
Int GetMaxTouchedUnit() const { return m_maxTouchedUnit; }
|
|
Uint64 GetTextureBindGeneration() const { return m_textureBindGeneration; }
|
|
void BumpTextureBindGeneration() { ++m_textureBindGeneration; }
|
|
|
|
private:
|
|
Uint64 m_textureBindGeneration = 0;
|
|
Int m_maxTouchedUnit = -1;
|
|
Int m_activeTextureUnit = 0;
|
|
Array<TextureUnit, MAX_TEXTURE_IMAGE_UNITS> m_textureUnits;
|
|
Array<ImageTextureBinding, MAX_TEXTURE_IMAGE_UNITS> m_imageTextureBindings;
|
|
IndexGenerator<Uint> m_indexGenerator;
|
|
UnorderedMap<GLuint, SharedPtr<ITextureObject>> m_textureObjects;
|
|
};
|
|
} // namespace MobileGL::MG_State::GLState
|