mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-25 19:02:07 -05:00
43 lines
827 B
C++
43 lines
827 B
C++
/*
|
|
* Copyright (c) 2023, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Noncopyable.h>
|
|
#include <LibAccelGfx/GL.h>
|
|
|
|
namespace AccelGfx {
|
|
|
|
class Program {
|
|
AK_MAKE_NONCOPYABLE(Program);
|
|
|
|
public:
|
|
enum class Name {
|
|
RectangleProgram,
|
|
RoundedRectangleProgram,
|
|
BlitProgram,
|
|
LinearGradientProgram,
|
|
BlurProgram,
|
|
|
|
ProgramCount,
|
|
};
|
|
|
|
static Program create(Name name, char const* vertex_shader_source, char const* fragment_shader_source);
|
|
|
|
void use();
|
|
GL::VertexAttribute get_attribute_location(char const* name);
|
|
GL::Uniform get_uniform_location(char const* name);
|
|
|
|
private:
|
|
Program(GL::Program program)
|
|
: m_program(program)
|
|
{
|
|
}
|
|
|
|
GL::Program m_program;
|
|
};
|
|
|
|
}
|