diff options
author | Chia-I Wu <[email protected]> | 2010-03-05 11:00:15 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-03-05 11:32:29 +0800 |
commit | fade8a6eb639d633cfdbba4a3ba3aa3cc5c04fa6 (patch) | |
tree | e856f498737a728917b31901fa43f21ed065a96f /src/gallium/state_trackers/egl/common | |
parent | 89a75b763467d83d4d402c91db55548682be14f0 (diff) |
st/egl: Add get_param to native display interface.
get_param can be used to query the parameters of a native display.
There is only NATIVE_PARAM_USE_NATIVE_BUFFER right now. It queries
whether the window/pixmap surfaces use the native buffers instead of
private buffers.
Diffstat (limited to 'src/gallium/state_trackers/egl/common')
-rw-r--r-- | src/gallium/state_trackers/egl/common/native.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/egl/common/native.h b/src/gallium/state_trackers/egl/common/native.h index 4533b3abf97..9c22ff3e432 100644 --- a/src/gallium/state_trackers/egl/common/native.h +++ b/src/gallium/state_trackers/egl/common/native.h @@ -49,6 +49,14 @@ enum native_attachment { NUM_NATIVE_ATTACHMENTS }; +enum native_param_type { + /* + * Return TRUE if window/pixmap surfaces use the buffers of the native + * types. + */ + NATIVE_PARAM_USE_NATIVE_BUFFER +}; + /** * Enumerations for probe results. */ @@ -146,6 +154,14 @@ struct native_display { void (*destroy)(struct native_display *ndpy); /** + * Query the parameters of the native display. + * + * The return value is defined by the parameter. + */ + int (*get_param)(struct native_display *ndpy, + enum native_param_type param); + + /** * Get the supported configs. The configs are owned by the display, but * the returned array should be free()ed. * |