Lines Matching defs:version

14  * version 2.1 of the License, or (at your option) any later version.
29 * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
31 * that LGPLv2 or any later version may be used, or where a choice of which version
56 DWORD version;
454 return EXTENSION_MAP[i].version;
1030 /* Certain applications (Steam) complain if we report an outdated driver version. In general,
1031 * reporting a driver version is moot because we are not the Windows driver, and we have different
1034 * The driver version has the form "x.y.z.w".
1036 * "x" is the Windows version the driver is meant for:
1052 * "w" is the vendor specific driver version.
1070 * All version numbers used below are from the Linux nvidia drivers. */
1162 ERR("Failed to get OS version, reporting 2000/XP.\n");
1167 TRACE("OS version %u.%u.\n", os_version.dwMajorVersion, os_version.dwMinorVersion);
1187 FIXME("Unhandled OS version %u.%u, reporting Win 7.\n",
1195 FIXME("Unhandled OS version %u.%u, reporting 2000/XP.\n",
1220 TRACE_(d3d_caps)("Reporting (fake) driver version 0x%08x-0x%08x.\n",
1247 if (major <= 0) ERR_(d3d_caps)("Invalid opengl major version: %d.\n", major);
1250 if (*ptr++ != '.') ERR_(d3d_caps)("Invalid opengl version string: %s.\n", debugstr_a(gl_version));
1254 TRACE_(d3d_caps)("Found OpenGL version: %d.%d.\n", major, minor);
2332 /* Now mark all the extensions supported which are included in the opengl core version. Do this *after*
2338 && EXTENSION_MAP[i].version <= gl_version && EXTENSION_MAP[i].version)
2595 TRACE_(d3d_caps)("GLSL version string: %s.\n", debugstr_a(str));
2597 /* The format of the GLSL version string is "major.minor[.release] [vendor info]". */
4881 TRACE_(d3d_caps)("Vertex shader disabled in config, reporting version 0.0\n");
4890 TRACE_(d3d_caps)("Pixel shader disabled in config, reporting version 0.0\n");
4910 * are the same among all shader models. So to avoid code duplication set the shader version
5704 HRESULT wined3d_init(IWineD3DImpl *wined3d, UINT version, IUnknown *parent)
5707 wined3d->dxVersion = version;
5714 if (version > 7)
5716 MESSAGE("Direct3D%u is not available without OpenGL.\n", version);