zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
__DRIextensionRec Struct Reference

#include <dri_interface.h>

Public Attributes

const char * name
 
int version
 

Detailed Description

Extension struct. Drivers 'inherit' from this struct by embedding it as the first element in the extension struct.

We never break API in for a DRI extension. If we need to change the way things work in a non-backwards compatible manner, we introduce a new extension. During a transition period, we can leave both the old and the new extension in the driver, which allows us to move to the new interface without having to update the loader(s) in lock step.

However, we can add entry points to an extension over time as long as we don't break the old ones. As we add entry points to an extension, we increase the version number. The corresponding #define can be used to guard code that accesses the new entry points at compile time and the version field in the extension struct can be used at run-time to determine how to use the extension.

Definition at line 110 of file dri_interface.h.

Member Data Documentation

const char* __DRIextensionRec::name

Definition at line 111 of file dri_interface.h.

int __DRIextensionRec::version

Definition at line 112 of file dri_interface.h.


The documentation for this struct was generated from the following file: