mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			263 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			263 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2022, Stephan Unverwerth <s.unverwerth@serenityos.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#include <LibVirtGPU/Shader.h>
 | 
						|
 | 
						|
namespace VirtGPU {
 | 
						|
 | 
						|
Shader::Shader(void const* ownership_token)
 | 
						|
    : GPU::Shader(ownership_token)
 | 
						|
{
 | 
						|
}
 | 
						|
 | 
						|
}
 |