/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/Engine/RendererFoundation/Shader/VertexDeclaration.h
19 строк
546 B
Ingrater
Format everything using clang-format (#267)
22 июл 2020, 21:23
Не верифицирован
22 июл 2020, 21:23
878ce7e
Код
Авторство
О чём код?
#pragma once #include <RendererFoundation/Descriptors/Descriptors.h> #include <RendererFoundation/RendererFoundationDLL.h> class EZ_RENDERERFOUNDATION_DLL ezGALVertexDeclaration : public ezGALObject<ezGALVertexDeclarationCreationDescription> { public: protected: friend class ezGALDevice; virtual ezResult InitPlatform(ezGALDevice* pDevice) = 0; virtual ezResult DeInitPlatform(ezGALDevice* pDevice) = 0; ezGALVertexDeclaration(const ezGALVertexDeclarationCreationDescription& Description); virtual ~ezGALVertexDeclaration(); };