gfx/angle/extensions/EGL_ANGLE_query_surface_pointer.txt

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

michael@0 1 Name
michael@0 2
michael@0 3 ANGLE_query_surface_pointer
michael@0 4
michael@0 5 Name Strings
michael@0 6
michael@0 7 EGL_ANGLE_query_surface_pointer
michael@0 8
michael@0 9 Contributors
michael@0 10
michael@0 11 Vladimir Vukicevic
michael@0 12 Daniel Koch
michael@0 13
michael@0 14 Contacts
michael@0 15
michael@0 16 Vladimir Vukicevic (vladimir 'at' pobox.com)
michael@0 17
michael@0 18 Status
michael@0 19
michael@0 20 Complete
michael@0 21 Implemented (ANGLE r558)
michael@0 22
michael@0 23 Version
michael@0 24
michael@0 25 Version 3, February 11, 2011
michael@0 26
michael@0 27 Number
michael@0 28
michael@0 29 EGL Extension #28
michael@0 30
michael@0 31 Dependencies
michael@0 32
michael@0 33 This extension is written against the wording of the EGL 1.4
michael@0 34 Specification.
michael@0 35
michael@0 36 Overview
michael@0 37
michael@0 38 This extension allows querying pointer-sized surface attributes,
michael@0 39 thus avoiding problems with coercing 64-bit pointers into a 32-bit
michael@0 40 integer.
michael@0 41
michael@0 42 New Types
michael@0 43
michael@0 44 None
michael@0 45
michael@0 46 New Procedures and Functions
michael@0 47
michael@0 48 EGLBoolean eglQuerySurfacePointerANGLE(
michael@0 49 EGLDisplay dpy,
michael@0 50 EGLSurface surface,
michael@0 51 EGLint attribute,
michael@0 52 void **value);
michael@0 53
michael@0 54 New Tokens
michael@0 55
michael@0 56 None
michael@0 57
michael@0 58 Additions to Chapter 3 of the EGL 1.4 Specification (EGL Functions and Errors)
michael@0 59
michael@0 60 Add to the end of the paragraph starting with "To query an
michael@0 61 attribute associated with an EGLSurface" in section 3.5.6,
michael@0 62 "Surface Attributes":
michael@0 63
michael@0 64 "If the attribute type in table 3.5 is 'pointer', then
michael@0 65 eglQuerySurface returns EGL_FALSE and an EGL_BAD_PARAMETER error
michael@0 66 is generated. To query pointer attributes, call:
michael@0 67
michael@0 68 EGLBoolean eglQuerySurfacePointerANGLE(
michael@0 69 EGLDisplay dpy,
michael@0 70 EGLSurface surface,
michael@0 71 EGLint attribute,
michael@0 72 void **value);
michael@0 73
michael@0 74 eglQuerySurfacePointerANGLE behaves identically to eglQuerySurface,
michael@0 75 except that only attributes of type 'pointer' can be queried.
michael@0 76 If an attribute queried via eglQuerySurfacePointerANGLE is not
michael@0 77 of type 'pointer', then eglQuerySurfacePointer returns EGL_FALSE
michael@0 78 and an EGL_BAD_PARAMETER error is generated."
michael@0 79
michael@0 80 Issues
michael@0 81
michael@0 82 Revision History
michael@0 83
michael@0 84 Version 3, 2011/02/11 - publish
michael@0 85
michael@0 86 Version 2, 2010/12/21 - fix typos.
michael@0 87
michael@0 88 Version 1, 2010/12/07 - first draft.

mercurial