mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:22:45 +00: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;
 | |
| };
 | |
| 
 | |
| }
 | 
