Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
xserver
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
17
Issues
17
List
Boards
Labels
Service Desk
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Adam Jackson
xserver
Commits
0b932cf4
Commit
0b932cf4
authored
Jan 22, 2014
by
Keith Packard
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'anholt/xserver-unifdef'
parents
1d76b02f
295d41fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
83 deletions
+1
-83
glx/glxdri2.c
glx/glxdri2.c
+0
-59
glx/glxdriswrast.c
glx/glxdriswrast.c
+1
-24
No files found.
glx/glxdri2.c
View file @
0b932cf4
...
...
@@ -55,14 +55,9 @@ typedef struct __GLXDRIscreen __GLXDRIscreen;
typedef
struct
__GLXDRIcontext
__GLXDRIcontext
;
typedef
struct
__GLXDRIdrawable
__GLXDRIdrawable
;
#ifdef __DRI2_ROBUSTNESS
#define ALL_DRI_CTX_FLAGS (__DRI_CTX_FLAG_DEBUG \
| __DRI_CTX_FLAG_FORWARD_COMPATIBLE \
| __DRI_CTX_FLAG_ROBUST_BUFFER_ACCESS)
#else
#define ALL_DRI_CTX_FLAGS (__DRI_CTX_FLAG_DEBUG \
| __DRI_CTX_FLAG_FORWARD_COMPATIBLE)
#endif
struct
__GLXDRIscreen
{
__GLXscreen
base
;
...
...
@@ -210,15 +205,10 @@ __glXDRIdrawableSwapBuffers(ClientPtr client, __GLXdrawable * drawable)
__GLXDRIscreen
*
screen
=
priv
->
screen
;
CARD64
unused
;
#if __DRI2_FLUSH_VERSION >= 3
if
(
screen
->
flush
)
{
(
*
screen
->
flush
->
flush
)
(
priv
->
driDrawable
);
(
*
screen
->
flush
->
invalidate
)
(
priv
->
driDrawable
);
}
#else
if
(
screen
->
flush
)
(
*
screen
->
flush
->
flushInvalidate
)
(
priv
->
driDrawable
);
#endif
if
(
DRI2SwapBuffers
(
client
,
drawable
->
pDraw
,
0
,
0
,
0
,
&
unused
,
__glXdriSwapEvent
,
drawable
)
!=
Success
)
...
...
@@ -294,8 +284,6 @@ __glXDRIcontextWait(__GLXcontext * baseContext,
return
FALSE
;
}
#ifdef __DRI_TEX_BUFFER
static
int
__glXDRIbindTexImage
(
__GLXcontext
*
baseContext
,
int
buffer
,
__GLXdrawable
*
glxPixmap
)
...
...
@@ -307,14 +295,12 @@ __glXDRIbindTexImage(__GLXcontext * baseContext,
if
(
texBuffer
==
NULL
)
return
Success
;
#if __DRI_TEX_BUFFER_VERSION >= 2
if
(
texBuffer
->
base
.
version
>=
2
&&
texBuffer
->
setTexBuffer2
!=
NULL
)
{
(
*
texBuffer
->
setTexBuffer2
)
(
context
->
driContext
,
glxPixmap
->
target
,
glxPixmap
->
format
,
drawable
->
driDrawable
);
}
else
#endif
{
texBuffer
->
setTexBuffer
(
context
->
driContext
,
glxPixmap
->
target
,
drawable
->
driDrawable
);
...
...
@@ -331,24 +317,6 @@ __glXDRIreleaseTexImage(__GLXcontext * baseContext,
return
Success
;
}
#else
static
int
__glXDRIbindTexImage
(
__GLXcontext
*
baseContext
,
int
buffer
,
__GLXdrawable
*
glxPixmap
)
{
return
Success
;
}
static
int
__glXDRIreleaseTexImage
(
__GLXcontext
*
baseContext
,
int
buffer
,
__GLXdrawable
*
pixmap
)
{
return
Success
;
}
#endif
static
__GLXtextureFromPixmap
__glXDRItextureFromPixmap
=
{
__glXDRIbindTexImage
,
__glXDRIreleaseTexImage
...
...
@@ -398,11 +366,7 @@ dri2_convert_glx_attribs(__GLXDRIscreen *screen, unsigned num_attribs,
*
major_ver
=
1
;
*
minor_ver
=
0
;
#ifdef __DRI2_ROBUSTNESS
*
reset
=
__DRI_CTX_RESET_NO_NOTIFICATION
;
#else
(
void
)
reset
;
#endif
for
(
i
=
0
;
i
<
num_attribs
;
i
++
)
{
switch
(
attribs
[
i
*
2
])
{
...
...
@@ -433,7 +397,6 @@ dri2_convert_glx_attribs(__GLXDRIscreen *screen, unsigned num_attribs,
return
False
;
}
break
;
#ifdef __DRI2_ROBUSTNESS
case
GLX_CONTEXT_RESET_NOTIFICATION_STRATEGY_ARB
:
if
(
screen
->
dri2
->
base
.
version
>=
4
)
{
*
error
=
BadValue
;
...
...
@@ -452,7 +415,6 @@ dri2_convert_glx_attribs(__GLXDRIscreen *screen, unsigned num_attribs,
return
False
;
}
break
;
#endif
default:
/* If an unknown attribute is received, fail.
*/
...
...
@@ -493,7 +455,6 @@ create_driver_context(__GLXDRIcontext * context,
{
context
->
driContext
=
NULL
;
#if __DRI_DRI2_VERSION >= 3
if
(
screen
->
dri2
->
base
.
version
>=
3
)
{
uint32_t
ctx_attribs
[
3
*
2
];
unsigned
num_ctx_attribs
=
0
;
...
...
@@ -525,13 +486,11 @@ create_driver_context(__GLXDRIcontext * context,
ctx_attribs
[
num_ctx_attribs
++
]
=
flags
;
}
#ifdef __DRI2_ROBUSTNESS
if
(
reset
!=
__DRI_CTX_RESET_NO_NOTIFICATION
)
{
ctx_attribs
[
num_ctx_attribs
++
]
=
__DRI_CTX_ATTRIB_RESET_STRATEGY
;
ctx_attribs
[
num_ctx_attribs
++
]
=
reset
;
}
#endif
}
context
->
driContext
=
...
...
@@ -567,7 +526,6 @@ create_driver_context(__GLXDRIcontext * context,
return
;
}
#endif
if
(
num_attribs
!=
0
)
{
*
error
=
BadValue
;
...
...
@@ -625,13 +583,11 @@ __glXDRIscreenCreateContext(__GLXscreen * baseScreen,
static
void
__glXDRIinvalidateBuffers
(
DrawablePtr
pDraw
,
void
*
priv
,
XID
id
)
{
#if __DRI2_FLUSH_VERSION >= 3
__GLXDRIdrawable
*
private
=
priv
;
__GLXDRIscreen
*
screen
=
private
->
screen
;
if
(
screen
->
flush
)
(
*
screen
->
flush
->
invalidate
)
(
private
->
driDrawable
);
#endif
}
static
__GLXdrawable
*
...
...
@@ -778,18 +734,14 @@ static const __DRIdri2LoaderExtension loaderExtension = {
dri2GetBuffersWithFormat
,
};
#ifdef __DRI_USE_INVALIDATE
static
const
__DRIuseInvalidateExtension
dri2UseInvalidate
=
{
{
__DRI_USE_INVALIDATE
,
1
}
};
#endif
static
const
__DRIextension
*
loader_extensions
[]
=
{
&
systemTimeExtension
.
base
,
&
loaderExtension
.
base
,
#ifdef __DRI_USE_INVALIDATE
&
dri2UseInvalidate
.
base
,
#endif
NULL
};
...
...
@@ -850,8 +802,6 @@ initializeExtensions(__GLXDRIscreen * screen)
__glXEnableExtension
(
screen
->
glx_enable_bits
,
"GLX_MESA_copy_sub_buffer"
);
LogMessage
(
X_INFO
,
"AIGLX: enabled GLX_MESA_copy_sub_buffer
\n
"
);
#if __DRI_DRI2_VERSION >= 3
if
(
screen
->
dri2
->
base
.
version
>=
3
)
{
__glXEnableExtension
(
screen
->
glx_enable_bits
,
"GLX_ARB_create_context"
);
...
...
@@ -864,7 +814,6 @@ initializeExtensions(__GLXDRIscreen * screen)
LogMessage
(
X_INFO
,
"AIGLX: enabled GLX_EXT_create_context_es2_profile
\n
"
);
}
#endif
if
(
DRI2HasSwapControl
(
pScreen
))
{
__glXEnableExtension
(
screen
->
glx_enable_bits
,
"GLX_INTEL_swap_event"
);
...
...
@@ -889,32 +838,25 @@ initializeExtensions(__GLXDRIscreen * screen)
}
for
(
i
=
0
;
extensions
[
i
];
i
++
)
{
#ifdef __DRI_READ_DRAWABLE
if
(
strcmp
(
extensions
[
i
]
->
name
,
__DRI_READ_DRAWABLE
)
==
0
)
{
__glXEnableExtension
(
screen
->
glx_enable_bits
,
"GLX_SGI_make_current_read"
);
LogMessage
(
X_INFO
,
"AIGLX: enabled GLX_SGI_make_current_read
\n
"
);
}
#endif
#ifdef __DRI_TEX_BUFFER
if
(
strcmp
(
extensions
[
i
]
->
name
,
__DRI_TEX_BUFFER
)
==
0
)
{
screen
->
texBuffer
=
(
const
__DRItexBufferExtension
*
)
extensions
[
i
];
/* GLX_EXT_texture_from_pixmap is always enabled. */
LogMessage
(
X_INFO
,
"AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
\n
"
);
}
#endif
#ifdef __DRI2_FLUSH
if
(
strcmp
(
extensions
[
i
]
->
name
,
__DRI2_FLUSH
)
==
0
&&
extensions
[
i
]
->
version
>=
3
)
{
screen
->
flush
=
(
__DRI2flushExtension
*
)
extensions
[
i
];
}
#endif
#ifdef __DRI2_ROBUSTNESS
if
(
strcmp
(
extensions
[
i
]
->
name
,
__DRI2_ROBUSTNESS
)
==
0
&&
screen
->
dri2
->
base
.
version
>=
3
)
{
__glXEnableExtension
(
screen
->
glx_enable_bits
,
...
...
@@ -922,7 +864,6 @@ initializeExtensions(__GLXDRIscreen * screen)
LogMessage
(
X_INFO
,
"AIGLX: enabled GLX_ARB_create_context_robustness
\n
"
);
}
#endif
/* Ignore unknown extensions */
}
...
...
glx/glxdriswrast.c
View file @
0b932cf4
...
...
@@ -170,8 +170,6 @@ __glXDRIcontextCopy(__GLXcontext * baseDst, __GLXcontext * baseSrc,
src
->
driContext
,
mask
);
}
#ifdef __DRI_TEX_BUFFER
static
int
__glXDRIbindTexImage
(
__GLXcontext
*
baseContext
,
int
buffer
,
__GLXdrawable
*
glxPixmap
)
...
...
@@ -205,24 +203,6 @@ __glXDRIreleaseTexImage(__GLXcontext * baseContext,
return
Success
;
}
#else
static
int
__glXDRIbindTexImage
(
__GLXcontext
*
baseContext
,
int
buffer
,
__GLXdrawable
*
glxPixmap
)
{
return
Success
;
}
static
int
__glXDRIreleaseTexImage
(
__GLXcontext
*
baseContext
,
int
buffer
,
__GLXdrawable
*
pixmap
)
{
return
Success
;
}
#endif
static
__GLXtextureFromPixmap
__glXDRItextureFromPixmap
=
{
__glXDRIbindTexImage
,
__glXDRIreleaseTexImage
...
...
@@ -407,20 +387,17 @@ initializeExtensions(__GLXDRIscreen * screen)
extensions
=
screen
->
core
->
getExtensions
(
screen
->
driScreen
);
for
(
i
=
0
;
extensions
[
i
];
i
++
)
{
#ifdef __DRI_COPY_SUB_BUFFER
if
(
strcmp
(
extensions
[
i
]
->
name
,
__DRI_COPY_SUB_BUFFER
)
==
0
)
{
screen
->
copySubBuffer
=
(
const
__DRIcopySubBufferExtension
*
)
extensions
[
i
];
/* GLX_MESA_copy_sub_buffer is always enabled. */
}
#endif
#ifdef __DRI_TEX_BUFFER
if
(
strcmp
(
extensions
[
i
]
->
name
,
__DRI_TEX_BUFFER
)
==
0
)
{
screen
->
texBuffer
=
(
const
__DRItexBufferExtension
*
)
extensions
[
i
];
/* GLX_EXT_texture_from_pixmap is always enabled. */
}
#endif
/* Ignore unknown extensions */
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment