mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-11-03 23:00:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			659 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			659 B
		
	
	
	
		
			C++
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 2024, Andrew Kaster <andrew@ladybird.org>
 | 
						|
 *
 | 
						|
 * SPDX-License-Identifier: BSD-2-Clause
 | 
						|
 */
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include <LibWeb/WebGL/Types.h>
 | 
						|
#include <LibWeb/WebGL/WebGLObject.h>
 | 
						|
 | 
						|
namespace Web::WebGL {
 | 
						|
 | 
						|
class WebGLVertexArrayObject : public WebGLObject {
 | 
						|
    WEB_PLATFORM_OBJECT(WebGLVertexArrayObject, WebGLObject);
 | 
						|
    GC_DECLARE_ALLOCATOR(WebGLVertexArrayObject);
 | 
						|
 | 
						|
public:
 | 
						|
    static GC::Ref<WebGLVertexArrayObject> create(JS::Realm& realm, GLuint handle);
 | 
						|
 | 
						|
    virtual ~WebGLVertexArrayObject() override;
 | 
						|
 | 
						|
protected:
 | 
						|
    explicit WebGLVertexArrayObject(JS::Realm&, GLuint handle);
 | 
						|
 | 
						|
    virtual void initialize(JS::Realm&) override;
 | 
						|
};
 | 
						|
 | 
						|
}
 |