Newer
Older
minerva / Userland / Libraries / LibGL / Shaders / Shader.h
@minerva minerva on 13 Jul 1 KB Initial commit
/*
 * Copyright (c) 2022, Stephan Unverwerth <s.unverwerth@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Error.h>
#include <AK/NonnullRefPtr.h>
#include <AK/Optional.h>
#include <AK/OwnPtr.h>
#include <AK/RefCounted.h>
#include <AK/RefPtr.h>
#include <AK/String.h>
#include <AK/StringView.h>
#include <AK/Vector.h>
#include <LibGL/GL/gl.h>
#include <LibGLSL/ObjectFile.h>

namespace GL {

class Shader final : public RefCounted<Shader> {
public:
    static NonnullRefPtr<Shader> create(GLenum shader_type);

    void clear_sources() { m_sources.clear(); }
    ErrorOr<void> add_source(StringView source_code);
    ErrorOr<void> compile();
    GLenum type() const { return m_type; }
    bool compile_status() const { return m_compile_status; }
    GLSL::ObjectFile const* object_file() const { return m_object_file.ptr(); }

    size_t info_log_length() const;
    size_t combined_source_length() const;

private:
    explicit Shader(GLenum shader_type)
        : m_type { shader_type }
    {
    }

    Vector<String> m_sources;
    GLenum m_type;
    bool m_compile_status { false };
    Optional<String> m_info_log;
    OwnPtr<GLSL::ObjectFile> m_object_file;
};

}