mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gl/cocoa: check for deprecated constants prior to OSX 10.10
This commit is contained in:
parent
50c491dd36
commit
9599b46416
1 changed files with 18 additions and 10 deletions
|
@ -229,8 +229,6 @@ static struct pixel_attr pixel_attrs[] = {
|
||||||
{kCGLPFAAccumSize, "Accum Size"},
|
{kCGLPFAAccumSize, "Accum Size"},
|
||||||
{kCGLPFAMinimumPolicy, "Minimum Policy"},
|
{kCGLPFAMinimumPolicy, "Minimum Policy"},
|
||||||
{kCGLPFAMaximumPolicy, "Maximum Policy"},
|
{kCGLPFAMaximumPolicy, "Maximum Policy"},
|
||||||
// {kCGLPFAOffScreen, "Off Screen"},
|
|
||||||
// {kCGLPFAFullScreen, "Full Screen"},
|
|
||||||
{kCGLPFASampleBuffers, "Sample Buffers"},
|
{kCGLPFASampleBuffers, "Sample Buffers"},
|
||||||
{kCGLPFASamples, "Samples"},
|
{kCGLPFASamples, "Samples"},
|
||||||
{kCGLPFAAuxDepthStencil, "Aux Depth Stencil"},
|
{kCGLPFAAuxDepthStencil, "Aux Depth Stencil"},
|
||||||
|
@ -238,23 +236,33 @@ static struct pixel_attr pixel_attrs[] = {
|
||||||
{kCGLPFAMultisample, "Multisample"},
|
{kCGLPFAMultisample, "Multisample"},
|
||||||
{kCGLPFASupersample, "Supersample"},
|
{kCGLPFASupersample, "Supersample"},
|
||||||
{kCGLPFARendererID, "Renderer ID"},
|
{kCGLPFARendererID, "Renderer ID"},
|
||||||
{kCGLPFASingleRenderer, "Single Renderer"},
|
|
||||||
{kCGLPFANoRecovery, "No Recovery"},
|
{kCGLPFANoRecovery, "No Recovery"},
|
||||||
{kCGLPFAAccelerated, "Accelerated"},
|
{kCGLPFAAccelerated, "Accelerated"},
|
||||||
{kCGLPFAClosestPolicy, "Closest Policy"},
|
{kCGLPFAClosestPolicy, "Closest Policy"},
|
||||||
// {kCGLPFARobust, "Robust"},
|
|
||||||
{kCGLPFABackingStore, "Backing Store"},
|
{kCGLPFABackingStore, "Backing Store"},
|
||||||
// {kCGLPFAMPSafe, "MP Safe"},
|
|
||||||
{kCGLPFAWindow, "Window"},
|
|
||||||
// {kCGLPFAMultiScreen, "Multi Screen"},
|
|
||||||
{kCGLPFACompliant, "Compliant"},
|
|
||||||
{kCGLPFADisplayMask, "Display Mask"},
|
{kCGLPFADisplayMask, "Display Mask"},
|
||||||
// {kCGLPFAPBuffer, "PBuffer"},
|
|
||||||
{kCGLPFARemotePBuffer, "Remote PBuffer"},
|
|
||||||
{kCGLPFAAllowOfflineRenderers, "Allow Offline Renderers"},
|
{kCGLPFAAllowOfflineRenderers, "Allow Offline Renderers"},
|
||||||
{kCGLPFAAcceleratedCompute, "Accelerated Compute"},
|
{kCGLPFAAcceleratedCompute, "Accelerated Compute"},
|
||||||
{kCGLPFAOpenGLProfile, "OpenGL Profile"},
|
{kCGLPFAOpenGLProfile, "OpenGL Profile"},
|
||||||
{kCGLPFAVirtualScreenCount, "Virtual Screen Count"},
|
{kCGLPFAVirtualScreenCount, "Virtual Screen Count"},
|
||||||
|
#if MAC_OS_X_VERSION_MAX_ALLOWED < 1090
|
||||||
|
{kCGLPFACompliant, "Compliant"},
|
||||||
|
{kCGLPFARemotePBuffer, "Remote PBuffer"},
|
||||||
|
{kCGLPFASingleRenderer, "Single Renderer"},
|
||||||
|
{kCGLPFAWindow, "Window"},
|
||||||
|
#endif
|
||||||
|
#if MAC_OS_X_VERSION_MAX_ALLOWED < 1070
|
||||||
|
// {kCGLPFAOffScreen, "Off Screen"},
|
||||||
|
// {kCGLPFAPBuffer, "PBuffer"},
|
||||||
|
#endif
|
||||||
|
#if MAC_OS_X_VERSION_MAX_ALLOWED < 1060
|
||||||
|
// {kCGLPFAFullScreen, "Full Screen"},
|
||||||
|
#endif
|
||||||
|
#if MAC_OS_X_VERSION_MAX_ALLOWED < 1050
|
||||||
|
// {kCGLPFAMPSafe, "MP Safe"},
|
||||||
|
// {kCGLPFAMultiScreen, "Multi Screen"},
|
||||||
|
// {kCGLPFARobust, "Robust"},
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue