Share

AcGiKernelDescriptor

Class Hierarchy

AcGiKernelDescriptor
    AcGsKernelDescriptor

C++

class AcGiKernelDescriptor : public AcArray<AcUniqueString::value>;

File

acgi.h

Description

The kernel descriptor contains a set of capabilities that describe a graphics kernel. This class can be used to request a particular kernel, or to report the capabilities of a kernel.

Example

const AcGiKernelDescriptor &descriptor = context()->kernel.getDescriptor();
constexpr AcUniqueString::value kRequestedFeature = AcUniqueString::Intern(L"Requested Feature");
if (descriptor.supports(kRequestedFeature))
    ...

Links

AcGiKernelDescriptor Methods

Previous Declaration

AutoCAD 2015 through AutoCAD 2024

class AcGiKernelDescriptor : public AcArray<const AcUniqueString *>

History

AutoCAD 2025

Signature changed.

Was this information helpful?