123456789101112131415161718192021222324252627282930 |
- /*
- * Copyright (c) 2021, Stephan Unverwerth <s.unverwerth@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <AK/RefCounted.h>
- #include <LibSoftGPU/Image.h>
- namespace GL {
- class Texture : public RefCounted<Texture> {
- public:
- virtual ~Texture() { }
- virtual bool is_texture_1d() const { return false; }
- virtual bool is_texture_2d() const { return false; }
- virtual bool is_texture_3d() const { return false; }
- virtual bool is_cube_map() const { return false; }
- RefPtr<SoftGPU::Image> device_image() { return m_device_image; }
- void set_device_image(RefPtr<SoftGPU::Image> image) { m_device_image = image; }
- private:
- RefPtr<SoftGPU::Image> m_device_image;
- };
- }
|