Add device reference counting

This commit is contained in:
Austin Eng
2017-07-10 11:16:51 -04:00
committed by Austin Eng
parent 563e9e253e
commit f9c39d021e
10 changed files with 17 additions and 41 deletions

View File

@@ -100,12 +100,6 @@ namespace opengl {
void Device::TickImpl() {
}
void Device::Reference() {
}
void Device::Release() {
}
// Bind Group
BindGroup::BindGroup(BindGroupBuilder* builder)

View File

@@ -98,10 +98,6 @@ namespace opengl {
TextureViewBase* CreateTextureView(TextureViewBuilder* builder) override;
void TickImpl() override;
// NXT API
void Reference();
void Release();
};
class BindGroup : public BindGroupBase {