12345678910111213141516171819 |
- /*
- * Copyright (c) 2021, Stephan Unverwerth <s.unverwerth@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <AK/String.h>
- namespace SoftGPU {
- struct DeviceInfo final {
- String vendor_name;
- String device_name;
- unsigned num_texture_units;
- };
- }
|