Graphics
v0.0.0
A simple abstraction layer for the modern graphics APIs.
载入中...
搜索中...
未找到
GLSampler.h
1
// Copyright 2022 ShenMian
2
// License(Apache-2.0)
3
4
#pragma once
5
6
#include "Sampler.h"
7
#include <glad/glad.h>
8
9
class
GLSampler
:
public
Sampler
10
{
11
public
:
12
GLSampler
(
const
Descriptor
& desc);
13
~GLSampler
();
14
15
private
:
16
GLuint handle;
17
};
GLSampler
Definition:
GLSampler.h:10
Sampler
Definition:
Sampler.h:7
Sampler::Descriptor
Definition:
Sampler.h:26
src
OpenGL
GLSampler.h
制作者
1.9.5