2012-03-27 09:43:04 -04:00
|
|
|
/*
|
|
|
|
* Cogl
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* A Low Level GPU Graphics and Utilities API
|
2012-03-27 09:43:04 -04:00
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Intel Corporation.
|
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software and associated documentation
|
|
|
|
* files (the "Software"), to deal in the Software without
|
|
|
|
* restriction, including without limitation the rights to use, copy,
|
|
|
|
* modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
|
|
* of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2012-03-27 09:43:04 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
2012-03-27 09:43:04 -04:00
|
|
|
*
|
2014-02-21 20:28:54 -05:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
2012-03-27 09:43:04 -04:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2013-07-16 20:30:39 -04:00
|
|
|
#include <test-fixtures/test-unit.h>
|
|
|
|
|
2012-03-27 09:43:04 -04:00
|
|
|
#include "cogl-gpu-info-private.h"
|
|
|
|
#include "cogl-context-private.h"
|
2012-04-23 09:09:19 -04:00
|
|
|
#include "cogl-version.h"
|
2012-03-27 09:43:04 -04:00
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
const char *renderer_string;
|
|
|
|
const char *version_string;
|
|
|
|
const char *vendor_string;
|
|
|
|
} CoglGpuInfoStrings;
|
|
|
|
|
2012-05-14 04:58:25 -04:00
|
|
|
typedef struct CoglGpuInfoArchitectureDescription
|
|
|
|
{
|
|
|
|
CoglGpuInfoArchitecture architecture;
|
|
|
|
const char *name;
|
|
|
|
CoglGpuInfoArchitectureFlag flags;
|
|
|
|
CoglBool (* check_function) (const CoglGpuInfoStrings *strings);
|
|
|
|
|
|
|
|
} CoglGpuInfoArchitectureDescription;
|
|
|
|
|
2012-03-27 09:43:04 -04:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
CoglGpuInfoVendor vendor;
|
|
|
|
const char *name;
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
CoglBool (* check_function) (const CoglGpuInfoStrings *strings);
|
2012-05-14 04:58:25 -04:00
|
|
|
const CoglGpuInfoArchitectureDescription *architectures;
|
|
|
|
|
2012-03-27 09:43:04 -04:00
|
|
|
} CoglGpuInfoVendorDescription;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
CoglGpuInfoDriverPackage driver_package;
|
|
|
|
const char *name;
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
CoglBool (* check_function) (const CoglGpuInfoStrings *strings,
|
2012-03-27 09:43:04 -04:00
|
|
|
int *version_out);
|
|
|
|
} CoglGpuInfoDriverPackageDescription;
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2012-03-27 09:43:04 -04:00
|
|
|
_cogl_gpu_info_parse_version_string (const char *version_string,
|
|
|
|
int n_components,
|
|
|
|
const char **tail,
|
|
|
|
int *version_ret)
|
|
|
|
{
|
|
|
|
int version = 0;
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
uint64_t part;
|
2012-03-27 09:43:04 -04:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; ; i++)
|
|
|
|
{
|
|
|
|
errno = 0;
|
|
|
|
part = g_ascii_strtoull (version_string,
|
|
|
|
(char **) &version_string,
|
|
|
|
10);
|
|
|
|
|
|
|
|
if (errno || part > COGL_VERSION_MAX_COMPONENT_VALUE)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
version |= part << ((2 - i) * COGL_VERSION_COMPONENT_BITS);
|
|
|
|
|
|
|
|
if (i + 1 >= n_components)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (*version_string != '.')
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
version_string++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (version_ret)
|
|
|
|
*version_ret = version;
|
|
|
|
if (tail)
|
|
|
|
*tail = version_string;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2012-05-14 04:58:25 -04:00
|
|
|
match_phrase (const char *string, const char *phrase)
|
2012-03-27 09:43:04 -04:00
|
|
|
{
|
2012-05-14 04:58:25 -04:00
|
|
|
const char *part = strstr (string, phrase);
|
|
|
|
int len;
|
2012-03-27 09:43:04 -04:00
|
|
|
|
2012-05-14 04:58:25 -04:00
|
|
|
if (part == NULL)
|
2012-03-27 09:43:04 -04:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* The match must either be at the beginning of the string or
|
2012-05-14 04:58:25 -04:00
|
|
|
preceded by a space. */
|
|
|
|
if (part > string && part[-1] != ' ')
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Also match must either be at end of string or followed by a
|
|
|
|
* space. */
|
|
|
|
len = strlen (phrase);
|
|
|
|
if (part[len] != '\0' && part[len] != ' ')
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CoglBool
|
|
|
|
check_intel_vendor (const CoglGpuInfoStrings *strings)
|
|
|
|
{
|
|
|
|
return match_phrase (strings->renderer_string, "Intel(R)");
|
|
|
|
}
|
|
|
|
|
|
|
|
static CoglBool
|
|
|
|
check_imagination_technologies_vendor (const CoglGpuInfoStrings *strings)
|
|
|
|
{
|
|
|
|
if (strcmp (strings->vendor_string, "Imagination Technologies") != 0)
|
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CoglBool
|
|
|
|
check_arm_vendor (const CoglGpuInfoStrings *strings)
|
|
|
|
{
|
|
|
|
if (strcmp (strings->vendor_string, "ARM") != 0)
|
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CoglBool
|
|
|
|
check_qualcomm_vendor (const CoglGpuInfoStrings *strings)
|
|
|
|
{
|
|
|
|
if (strcmp (strings->vendor_string, "Qualcomm") != 0)
|
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CoglBool
|
|
|
|
check_nvidia_vendor (const CoglGpuInfoStrings *strings)
|
|
|
|
{
|
|
|
|
if (strcmp (strings->vendor_string, "NVIDIA") != 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CoglBool
|
|
|
|
check_ati_vendor (const CoglGpuInfoStrings *strings)
|
|
|
|
{
|
|
|
|
if (strcmp (strings->vendor_string, "ATI") != 0)
|
2012-03-27 09:43:04 -04:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2012-05-14 04:58:25 -04:00
|
|
|
check_mesa_vendor (const CoglGpuInfoStrings *strings)
|
|
|
|
{
|
|
|
|
if (strcmp (strings->vendor_string, "Tungsten Graphics, Inc") == 0)
|
|
|
|
return TRUE;
|
|
|
|
else if (strcmp (strings->vendor_string, "VMware, Inc.") == 0)
|
|
|
|
return TRUE;
|
2012-09-12 09:36:00 -04:00
|
|
|
else if (strcmp (strings->vendor_string, "Mesa Project") == 0)
|
|
|
|
return TRUE;
|
2012-05-14 04:58:25 -04:00
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CoglBool
|
|
|
|
check_true (const CoglGpuInfoStrings *strings)
|
2012-03-27 09:43:04 -04:00
|
|
|
{
|
|
|
|
/* This is a last resort so it always matches */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-05-14 04:58:25 -04:00
|
|
|
static CoglBool
|
|
|
|
check_sandybridge_architecture (const CoglGpuInfoStrings *strings)
|
|
|
|
{
|
|
|
|
return match_phrase (strings->renderer_string, "Sandybridge");
|
|
|
|
}
|
|
|
|
|
|
|
|
static CoglBool
|
|
|
|
check_llvmpipe_architecture (const CoglGpuInfoStrings *strings)
|
|
|
|
{
|
|
|
|
return match_phrase (strings->renderer_string, "llvmpipe");
|
|
|
|
}
|
|
|
|
|
|
|
|
static CoglBool
|
|
|
|
check_softpipe_architecture (const CoglGpuInfoStrings *strings)
|
|
|
|
{
|
|
|
|
return match_phrase (strings->renderer_string, "softpipe");
|
|
|
|
}
|
|
|
|
|
|
|
|
static CoglBool
|
|
|
|
check_swrast_architecture (const CoglGpuInfoStrings *strings)
|
|
|
|
{
|
2012-09-12 09:36:00 -04:00
|
|
|
return match_phrase (strings->renderer_string, "software rasterizer") ||
|
|
|
|
match_phrase (strings->renderer_string, "Software Rasterizer");
|
2012-05-14 04:58:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static CoglBool
|
|
|
|
check_sgx_architecture (const CoglGpuInfoStrings *strings)
|
|
|
|
{
|
|
|
|
if (strncmp (strings->renderer_string, "PowerVR SGX", 12) != 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static CoglBool
|
|
|
|
check_mali_architecture (const CoglGpuInfoStrings *strings)
|
|
|
|
{
|
|
|
|
if (strncmp (strings->renderer_string, "Mali-", 5) != 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const CoglGpuInfoArchitectureDescription
|
|
|
|
intel_architectures[] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_SANDYBRIDGE,
|
|
|
|
"Sandybridge",
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_IMMEDIATE_MODE |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_FRAGMENT_IMMEDIATE_MODE,
|
|
|
|
check_sandybridge_architecture
|
|
|
|
},
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_UNKNOWN,
|
|
|
|
"Unknown",
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_IMMEDIATE_MODE |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_FRAGMENT_IMMEDIATE_MODE,
|
|
|
|
check_true
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static const CoglGpuInfoArchitectureDescription
|
|
|
|
powervr_architectures[] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_SGX,
|
|
|
|
"SGX",
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_TILED |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_FRAGMENT_DEFERRED,
|
|
|
|
check_sgx_architecture
|
|
|
|
},
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_UNKNOWN,
|
|
|
|
"Unknown",
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_TILED |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_TILED,
|
|
|
|
check_true
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static const CoglGpuInfoArchitectureDescription
|
|
|
|
arm_architectures[] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_MALI,
|
|
|
|
"Mali",
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_TILED |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_FRAGMENT_IMMEDIATE_MODE,
|
|
|
|
check_mali_architecture
|
|
|
|
},
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_UNKNOWN,
|
|
|
|
"Unknown",
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_TILED |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_FRAGMENT_IMMEDIATE_MODE,
|
|
|
|
check_true
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static const CoglGpuInfoArchitectureDescription
|
|
|
|
mesa_architectures[] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_LLVMPIPE,
|
|
|
|
"LLVM Pipe",
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_IMMEDIATE_MODE |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_SOFTWARE |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_FRAGMENT_IMMEDIATE_MODE |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_FRAGMENT_SOFTWARE,
|
|
|
|
check_llvmpipe_architecture
|
|
|
|
},
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_SOFTPIPE,
|
|
|
|
"Softpipe",
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_IMMEDIATE_MODE |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_SOFTWARE |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_FRAGMENT_IMMEDIATE_MODE |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_FRAGMENT_SOFTWARE,
|
|
|
|
check_softpipe_architecture
|
|
|
|
},
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_SWRAST,
|
|
|
|
"SWRast",
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_IMMEDIATE_MODE |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_SOFTWARE |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_FRAGMENT_IMMEDIATE_MODE |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_FRAGMENT_SOFTWARE,
|
|
|
|
check_swrast_architecture
|
|
|
|
},
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_UNKNOWN,
|
|
|
|
"Unknown",
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_IMMEDIATE_MODE |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_FRAGMENT_IMMEDIATE_MODE,
|
|
|
|
check_true
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static const CoglGpuInfoArchitectureDescription
|
|
|
|
unknown_architectures[] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_UNKNOWN,
|
|
|
|
"Unknown",
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_IMMEDIATE_MODE |
|
|
|
|
COGL_GPU_INFO_ARCHITECTURE_FLAG_VERTEX_IMMEDIATE_MODE,
|
|
|
|
check_true
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-03-27 09:43:04 -04:00
|
|
|
static const CoglGpuInfoVendorDescription
|
|
|
|
_cogl_gpu_info_vendors[] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_VENDOR_INTEL,
|
|
|
|
"Intel",
|
2012-05-14 04:58:25 -04:00
|
|
|
check_intel_vendor,
|
|
|
|
intel_architectures
|
|
|
|
},
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_VENDOR_IMAGINATION_TECHNOLOGIES,
|
|
|
|
"Imagination Technologies",
|
|
|
|
check_imagination_technologies_vendor,
|
|
|
|
powervr_architectures
|
|
|
|
},
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_VENDOR_ARM,
|
|
|
|
"ARM",
|
|
|
|
check_arm_vendor,
|
|
|
|
arm_architectures
|
|
|
|
},
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_VENDOR_QUALCOMM,
|
|
|
|
"Qualcomm",
|
|
|
|
check_qualcomm_vendor,
|
|
|
|
unknown_architectures
|
|
|
|
},
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_VENDOR_NVIDIA,
|
|
|
|
"Nvidia",
|
|
|
|
check_nvidia_vendor,
|
|
|
|
unknown_architectures
|
|
|
|
},
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_VENDOR_ATI,
|
|
|
|
"ATI",
|
|
|
|
check_ati_vendor,
|
|
|
|
unknown_architectures
|
2012-03-27 09:43:04 -04:00
|
|
|
},
|
|
|
|
/* Must be last */
|
2012-05-14 04:58:25 -04:00
|
|
|
{
|
|
|
|
COGL_GPU_INFO_VENDOR_MESA,
|
|
|
|
"Mesa",
|
|
|
|
check_mesa_vendor,
|
|
|
|
mesa_architectures
|
|
|
|
},
|
2012-03-27 09:43:04 -04:00
|
|
|
{
|
|
|
|
COGL_GPU_INFO_VENDOR_UNKNOWN,
|
|
|
|
"Unknown",
|
2012-05-14 04:58:25 -04:00
|
|
|
check_true,
|
|
|
|
unknown_architectures
|
2012-03-27 09:43:04 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2012-03-27 09:43:04 -04:00
|
|
|
check_mesa_driver_package (const CoglGpuInfoStrings *strings,
|
|
|
|
int *version_ret)
|
|
|
|
{
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
uint64_t micro_part;
|
2012-03-27 09:43:04 -04:00
|
|
|
const char *v;
|
|
|
|
|
|
|
|
/* The version string should always begin a two-part GL version
|
|
|
|
number */
|
|
|
|
if (!_cogl_gpu_info_parse_version_string (strings->version_string,
|
|
|
|
2, /* n_components */
|
|
|
|
&v, /* tail */
|
|
|
|
NULL /* version_ret */))
|
|
|
|
return FALSE;
|
|
|
|
|
2013-07-16 20:30:39 -04:00
|
|
|
/* In mesa this will be followed optionally by "(Core Profile)" and
|
|
|
|
* then "Mesa" */
|
|
|
|
v = strstr (v, " Mesa ");
|
|
|
|
if (!v)
|
2012-03-27 09:43:04 -04:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
v += 6;
|
|
|
|
|
|
|
|
/* Next there will be a version string that is at least two
|
|
|
|
components. On a git devel build the version will be something
|
|
|
|
like "-devel<git hash>" instead */
|
|
|
|
if (!_cogl_gpu_info_parse_version_string (v,
|
|
|
|
2, /* n_components */
|
|
|
|
&v, /* tail */
|
|
|
|
version_ret))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* If it is a development build then we'll just leave the micro
|
|
|
|
number as 0 */
|
|
|
|
if (g_str_has_prefix (v, "-devel"))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* Otherwise there should be a micro version number */
|
|
|
|
if (*v != '.')
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
micro_part = g_ascii_strtoull (v + 1, NULL /* endptr */, 10 /* base */);
|
|
|
|
if (errno || micro_part > COGL_VERSION_MAX_COMPONENT_VALUE)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
*version_ret = COGL_VERSION_ENCODE (COGL_VERSION_GET_MAJOR (*version_ret),
|
|
|
|
COGL_VERSION_GET_MINOR (*version_ret),
|
|
|
|
micro_part);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-07-16 20:30:39 -04:00
|
|
|
UNIT_TEST (check_mesa_driver_package_parser,
|
|
|
|
0, /* no requirements */
|
|
|
|
0 /* no failure cases */)
|
|
|
|
{
|
2013-07-24 05:39:21 -04:00
|
|
|
/* renderer_string, version_string, vendor_string;*/
|
|
|
|
const CoglGpuInfoStrings test_strings[2] = {
|
|
|
|
{ NULL, "3.1 Mesa 9.2-devel15436ad", NULL },
|
|
|
|
{ NULL, "3.1 (Core Profile) Mesa 9.2.0-devel (git-15436ad)", NULL }
|
2013-07-16 20:30:39 -04:00
|
|
|
};
|
|
|
|
int i;
|
|
|
|
int version;
|
|
|
|
|
|
|
|
for (i = 0; i < G_N_ELEMENTS (test_strings); i++)
|
|
|
|
{
|
|
|
|
g_assert (check_mesa_driver_package (&test_strings[i], &version));
|
|
|
|
g_assert_cmpint (version, ==, COGL_VERSION_ENCODE (9, 2, 0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Switch use of primitive glib types to c99 equivalents
The coding style has for a long time said to avoid using redundant glib
data types such as gint or gchar etc because we feel that they make the
code look unnecessarily foreign to developers coming from outside of the
Gnome developer community.
Note: When we tried to find the historical rationale for the types we
just found that they were apparently only added for consistent syntax
highlighting which didn't seem that compelling.
Up until now we have been continuing to use some of the platform
specific type such as gint{8,16,32,64} and gsize but this patch switches
us over to using the standard c99 equivalents instead so we can further
ensure that our code looks familiar to the widest range of C developers
who might potentially contribute to Cogl.
So instead of using the gint{8,16,32,64} and guint{8,16,32,64} types this
switches all Cogl code to instead use the int{8,16,32,64}_t and
uint{8,16,32,64}_t c99 types instead.
Instead of gsize we now use size_t
For now we are not going to use the c99 _Bool type and instead we have
introduced a new CoglBool type to use instead of gboolean.
Reviewed-by: Neil Roberts <neil@linux.intel.com>
(cherry picked from commit 5967dad2400d32ca6319cef6cb572e81bf2c15f0)
2012-04-16 16:56:40 -04:00
|
|
|
static CoglBool
|
2012-03-27 09:43:04 -04:00
|
|
|
check_unknown_driver_package (const CoglGpuInfoStrings *strings,
|
|
|
|
int *version_out)
|
|
|
|
{
|
|
|
|
*version_out = 0;
|
|
|
|
|
|
|
|
/* This is a last resort so it always matches */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const CoglGpuInfoDriverPackageDescription
|
|
|
|
_cogl_gpu_info_driver_packages[] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_DRIVER_PACKAGE_MESA,
|
|
|
|
"Mesa",
|
|
|
|
check_mesa_driver_package
|
|
|
|
},
|
|
|
|
/* Must be last */
|
|
|
|
{
|
|
|
|
COGL_GPU_INFO_DRIVER_PACKAGE_UNKNOWN,
|
|
|
|
"Unknown",
|
|
|
|
check_unknown_driver_package
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
_cogl_gpu_info_init (CoglContext *ctx,
|
|
|
|
CoglGpuInfo *gpu)
|
|
|
|
{
|
|
|
|
CoglGpuInfoStrings strings;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
strings.renderer_string = (const char *) ctx->glGetString (GL_RENDERER);
|
2012-07-31 11:30:33 -04:00
|
|
|
strings.version_string = _cogl_context_get_gl_version (ctx);
|
2012-03-27 09:43:04 -04:00
|
|
|
strings.vendor_string = (const char *) ctx->glGetString (GL_VENDOR);
|
|
|
|
|
|
|
|
/* Determine the driver package */
|
|
|
|
for (i = 0; ; i++)
|
|
|
|
{
|
|
|
|
const CoglGpuInfoDriverPackageDescription *description =
|
|
|
|
_cogl_gpu_info_driver_packages + i;
|
|
|
|
|
|
|
|
if (description->check_function (&strings, &gpu->driver_package_version))
|
|
|
|
{
|
|
|
|
gpu->driver_package = description->driver_package;
|
|
|
|
gpu->driver_package_name = description->name;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Determine the GPU vendor */
|
|
|
|
for (i = 0; ; i++)
|
|
|
|
{
|
|
|
|
const CoglGpuInfoVendorDescription *description =
|
|
|
|
_cogl_gpu_info_vendors + i;
|
|
|
|
|
|
|
|
if (description->check_function (&strings))
|
|
|
|
{
|
2012-05-14 04:58:25 -04:00
|
|
|
int j;
|
|
|
|
|
2012-03-27 09:43:04 -04:00
|
|
|
gpu->vendor = description->vendor;
|
|
|
|
gpu->vendor_name = description->name;
|
2012-05-14 04:58:25 -04:00
|
|
|
|
|
|
|
for (j = 0; ; j++)
|
|
|
|
{
|
|
|
|
const CoglGpuInfoArchitectureDescription *architecture =
|
|
|
|
description->architectures + j;
|
|
|
|
|
|
|
|
if (architecture->check_function (&strings))
|
|
|
|
{
|
|
|
|
gpu->architecture = architecture->architecture;
|
|
|
|
gpu->architecture_name = architecture->name;
|
|
|
|
gpu->architecture_flags = architecture->flags;
|
|
|
|
goto probed;
|
|
|
|
}
|
|
|
|
}
|
2012-03-27 09:43:04 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-14 04:58:25 -04:00
|
|
|
probed:
|
|
|
|
|
|
|
|
COGL_NOTE (WINSYS, "Driver package = %s, vendor = %s, architecture = %s\n",
|
|
|
|
gpu->driver_package_name,
|
|
|
|
gpu->vendor_name,
|
|
|
|
gpu->architecture_name);
|
|
|
|
|
2012-03-27 09:43:04 -04:00
|
|
|
/* Determine the driver bugs */
|
2012-03-27 12:24:50 -04:00
|
|
|
|
2012-10-11 11:59:55 -04:00
|
|
|
/* In Mesa the glReadPixels implementation is really slow
|
|
|
|
when using the Intel driver. The Intel
|
2012-03-27 12:24:50 -04:00
|
|
|
driver has a fast blit path when reading into a PBO. Reading into
|
|
|
|
a temporary PBO and then memcpying back out to the application's
|
|
|
|
memory is faster than a regular glReadPixels in this case */
|
|
|
|
if (gpu->vendor == COGL_GPU_INFO_VENDOR_INTEL &&
|
2012-10-11 11:59:55 -04:00
|
|
|
gpu->driver_package == COGL_GPU_INFO_DRIVER_PACKAGE_MESA)
|
2012-03-27 12:24:50 -04:00
|
|
|
gpu->driver_bugs |= COGL_GPU_INFO_DRIVER_BUG_MESA_46631_SLOW_READ_PIXELS;
|
2012-03-27 09:43:04 -04:00
|
|
|
}
|