123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723 |
- /*
- * Copyright © 2011 Intel Corporation
- *
- * 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:
- *
- * The above copyright notice and this permission notice (including the next
- * paragraph) shall be included in all copies or substantial portions of the
- * Software.
- *
- * 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.
- */
- #include <gtest/gtest.h>
- #include <string.h>
-
- extern "C" {
- #include "glxclient.h"
- }
-
- #include <xcb/glx.h>
-
- #include "mock_xdisplay.h"
- #include "fake_glx_screen.h"
-
- /**
- * \name Wrappers around some X structures to make the more usable for tests
- */
- /*@{*/
- class fake_glx_screen;
-
- class fake_glx_display : public glx_display {
- public:
- fake_glx_display(mock_XDisplay *dpy, int major, int minor)
- {
- this->next = 0;
- this->dpy = dpy;
- this->majorOpcode = 0;
- this->majorVersion = major;
- this->minorVersion = minor;
- this->serverGLXvendor = 0;
- this->serverGLXversion = 0;
- this->glXDrawHash = 0;
-
- this->screens = new glx_screen *[dpy->nscreens];
- memset(this->screens, 0, sizeof(struct glx_screen *) * dpy->nscreens);
- }
-
- ~fake_glx_display()
- {
- for (int i = 0; i < this->dpy->nscreens; i++) {
- if (this->screens[i] != NULL)
- delete this->screens[i];
- }
-
- delete [] this->screens;
- }
-
- void init_screen(int i, const char *ext);
- };
-
- class glX_send_client_info_test : public ::testing::Test {
- public:
- glX_send_client_info_test();
- virtual ~glX_send_client_info_test();
- virtual void SetUp();
-
- void common_protocol_expected_false_test(unsigned major, unsigned minor,
- const char *glx_ext, bool *value);
-
- void common_protocol_expected_true_test(unsigned major, unsigned minor,
- const char *glx_ext, bool *value);
-
- void create_single_screen_display(unsigned major, unsigned minor,
- const char *glx_ext);
-
- void destroy_display();
-
- protected:
- fake_glx_display *glx_dpy;
- mock_XDisplay *display;
- };
-
- void
- fake_glx_display::init_screen(int i, const char *ext)
- {
- if (this->screens[i] != NULL)
- delete this->screens[i];
-
- this->screens[i] = new fake_glx_screen(this, i, ext);
- }
- /*@}*/
-
- static const char ext[] = "GL_XXX_dummy";
-
- static bool ClientInfo_was_sent;
- static bool SetClientInfoARB_was_sent;
- static bool SetClientInfo2ARB_was_sent;
- static xcb_connection_t *connection_used;
- static int gl_ext_length;
- static char *gl_ext_string;
- static int glx_ext_length;
- static char *glx_ext_string;
- static int num_gl_versions;
- static uint32_t *gl_versions;
- static int glx_major;
- static int glx_minor;
-
- extern "C" xcb_connection_t *
- XGetXCBConnection(Display *dpy)
- {
- return (xcb_connection_t *) 0xdeadbeef;
- }
-
- extern "C" xcb_void_cookie_t
- xcb_glx_client_info(xcb_connection_t *c,
- uint32_t major_version,
- uint32_t minor_version,
- uint32_t str_len,
- const char *string)
- {
- xcb_void_cookie_t cookie;
-
- ClientInfo_was_sent = true;
- connection_used = c;
-
- gl_ext_string = (char *) malloc(str_len);
- memcpy(gl_ext_string, string, str_len);
- gl_ext_length = str_len;
-
- glx_major = major_version;
- glx_minor = minor_version;
-
- cookie.sequence = 0;
- return cookie;
- }
-
- extern "C" xcb_void_cookie_t
- xcb_glx_set_client_info_arb(xcb_connection_t *c,
- uint32_t major_version,
- uint32_t minor_version,
- uint32_t num_versions,
- uint32_t gl_str_len,
- uint32_t glx_str_len,
- const uint32_t *versions,
- const char *gl_string,
- const char *glx_string)
- {
- xcb_void_cookie_t cookie;
-
- SetClientInfoARB_was_sent = true;
- connection_used = c;
-
- gl_ext_string = new char[gl_str_len];
- memcpy(gl_ext_string, gl_string, gl_str_len);
- gl_ext_length = gl_str_len;
-
- glx_ext_string = new char[glx_str_len];
- memcpy(glx_ext_string, glx_string, glx_str_len);
- glx_ext_length = glx_str_len;
-
- gl_versions = new uint32_t[num_versions * 2];
- memcpy(gl_versions, versions, sizeof(uint32_t) * num_versions * 2);
- num_gl_versions = num_versions;
-
- glx_major = major_version;
- glx_minor = minor_version;
-
- cookie.sequence = 0;
- return cookie;
- }
-
- extern "C" xcb_void_cookie_t
- xcb_glx_set_client_info_2arb(xcb_connection_t *c,
- uint32_t major_version,
- uint32_t minor_version,
- uint32_t num_versions,
- uint32_t gl_str_len,
- uint32_t glx_str_len,
- const uint32_t *versions,
- const char *gl_string,
- const char *glx_string)
- {
- xcb_void_cookie_t cookie;
-
- SetClientInfo2ARB_was_sent = true;
- connection_used = c;
-
- gl_ext_string = new char[gl_str_len];
- memcpy(gl_ext_string, gl_string, gl_str_len);
- gl_ext_length = gl_str_len;
-
- glx_ext_string = new char[glx_str_len];
- memcpy(glx_ext_string, glx_string, glx_str_len);
- glx_ext_length = glx_str_len;
-
- gl_versions = new uint32_t[num_versions * 3];
- memcpy(gl_versions, versions, sizeof(uint32_t) * num_versions * 3);
- num_gl_versions = num_versions;
-
- glx_major = major_version;
- glx_minor = minor_version;
-
- cookie.sequence = 0;
- return cookie;
- }
-
- extern "C" char *
- __glXGetClientGLExtensionString()
- {
- char *str = (char *) malloc(sizeof(ext));
-
- memcpy(str, ext, sizeof(ext));
- return str;
- }
-
- glX_send_client_info_test::glX_send_client_info_test()
- : glx_dpy(0), display(0)
- {
- /* empty */
- }
-
- glX_send_client_info_test::~glX_send_client_info_test()
- {
- if (glx_dpy)
- delete glx_dpy;
-
- if (display)
- delete display;
- }
-
- void
- glX_send_client_info_test::destroy_display()
- {
- if (this->glx_dpy != NULL) {
- if (this->glx_dpy->screens != NULL) {
- for (int i = 0; i < this->display->nscreens; i++) {
- delete [] this->glx_dpy->screens[i]->serverGLXexts;
- delete this->glx_dpy->screens[i];
- }
-
- delete [] this->glx_dpy->screens;
- }
-
- delete this->glx_dpy;
- delete this->display;
- }
- }
-
- void
- glX_send_client_info_test::SetUp()
- {
- ClientInfo_was_sent = false;
- SetClientInfoARB_was_sent = false;
- SetClientInfo2ARB_was_sent = false;
- connection_used = (xcb_connection_t *) ~0;
- gl_ext_length = 0;
- gl_ext_string = (char *) 0;
- glx_ext_length = 0;
- glx_ext_string = (char *) 0;
- num_gl_versions = 0;
- gl_versions = (uint32_t *) 0;
- glx_major = 0;
- glx_minor = 0;
- }
-
- void
- glX_send_client_info_test::create_single_screen_display(unsigned major,
- unsigned minor,
- const char *glx_ext)
- {
- this->display = new mock_XDisplay(1);
-
- this->glx_dpy = new fake_glx_display(this->display, major, minor);
- this->glx_dpy->init_screen(0, glx_ext);
- }
-
- void
- glX_send_client_info_test::common_protocol_expected_false_test(unsigned major,
- unsigned minor,
- const char *glx_ext,
- bool *value)
- {
- create_single_screen_display(major, minor, glx_ext);
- __glX_send_client_info(this->glx_dpy);
- EXPECT_FALSE(*value);
- }
-
- void
- glX_send_client_info_test::common_protocol_expected_true_test(unsigned major,
- unsigned minor,
- const char *glx_ext,
- bool *value)
- {
- create_single_screen_display(major, minor, glx_ext);
- __glX_send_client_info(this->glx_dpy);
- EXPECT_TRUE(*value);
- }
-
- TEST_F(glX_send_client_info_test, doesnt_send_ClientInfo_for_1_0)
- {
- /* The glXClientInfo protocol was added in GLX 1.1. Verify that no
- * glXClientInfo is sent to a GLX server that only has GLX 1.0.
- */
- common_protocol_expected_false_test(1, 0, "", &ClientInfo_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, doesnt_send_SetClientInfoARB_for_1_0)
- {
- /* The glXSetClientInfoARB protocol was added in GLX 1.4 with the
- * GLX_ARB_create_context extension. Verify that no glXSetClientInfoARB is
- * sent to a GLX server that only has GLX 1.0 regardless of the extension
- * setting.
- */
- common_protocol_expected_false_test(1, 0,
- "GLX_ARB_create_context",
- &SetClientInfoARB_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, doesnt_send_SetClientInfoARB_for_1_1)
- {
- /* The glXSetClientInfoARB protocol was added in GLX 1.4 with the
- * GLX_ARB_create_context extension. Verify that no glXSetClientInfoARB is
- * sent to a GLX server that only has GLX 1.0 regardless of the extension
- * setting.
- */
- common_protocol_expected_false_test(1, 1,
- "GLX_ARB_create_context",
- &SetClientInfoARB_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, doesnt_send_SetClientInfoARB_for_1_4_with_empty_extensions)
- {
- /* The glXSetClientInfoARB protocol was added in GLX 1.4 with the
- * GLX_ARB_create_context extension. Verify that no glXSetClientInfoARB is
- * sent to a GLX server that has GLX 1.4 but has an empty extension string
- * (i.e., no extensions at all).
- */
- common_protocol_expected_false_test(1, 4,
- "",
- &SetClientInfoARB_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, doesnt_send_SetClientInfoARB_for_1_4_without_extension)
- {
- /* The glXSetClientInfoARB protocol was added in GLX 1.4 with the
- * GLX_ARB_create_context extension. Verify that no glXSetClientInfoARB is
- * sent to a GLX server that has GLX 1.4 but doesn't have the extension.
- */
- common_protocol_expected_false_test(1, 4,
- "GLX_EXT_texture_from_pixmap",
- &SetClientInfoARB_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, doesnt_send_SetClientInfoARB_for_1_4_with_wrong_extension)
- {
- /* The glXSetClientInfoARB protocol was added in GLX 1.4 with the
- * GLX_ARB_create_context extension. Verify that no glXSetClientInfoARB is
- * sent to a GLX server that has GLX 1.4 but does not have the extension.
- *
- * This test differs from
- * doesnt_send_SetClientInfoARB_for_1_4_without_extension in that an
- * extension exists that looks like the correct extension but isn't.
- */
- common_protocol_expected_false_test(1, 4,
- "GLX_ARB_create_context2",
- &SetClientInfoARB_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, doesnt_send_SetClientInfoARB_for_1_4_with_profile_extension)
- {
- /* The glXSetClientInfoARB protocol was added in GLX 1.4 with the
- * GLX_ARB_create_context extension. Verify that no glXSetClientInfoARB is
- * sent to a GLX server that has GLX 1.4 but does not have the extension.
- *
- * This test differs from
- * doesnt_send_SetClientInfoARB_for_1_4_without_extension in that an
- * extension exists that looks like the correct extension but isn't.
- */
- common_protocol_expected_false_test(1, 4,
- "GLX_ARB_create_context_profile",
- &SetClientInfoARB_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, doesnt_send_SetClientInfo2ARB_for_1_0)
- {
- /* The glXSetClientInfo2ARB protocol was added in GLX 1.4 with the
- * GLX_ARB_create_context_profile extension. Verify that no
- * glXSetClientInfo2ARB is sent to a GLX server that only has GLX 1.0
- * regardless of the extension setting.
- */
- common_protocol_expected_false_test(1, 0,
- "GLX_ARB_create_context_profile",
- &SetClientInfo2ARB_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, doesnt_send_SetClientInfo2ARB_for_1_1)
- {
- /* The glXSetClientInfo2ARB protocol was added in GLX 1.4 with the
- * GLX_ARB_create_context_profile extension. Verify that no
- * glXSetClientInfo2ARB is sent to a GLX server that only has GLX 1.1
- * regardless of the extension setting.
- */
- common_protocol_expected_false_test(1, 1,
- "GLX_ARB_create_context_profile",
- &SetClientInfo2ARB_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, doesnt_send_SetClientInfo2ARB_for_1_4_with_empty_extensions)
- {
- /* The glXSetClientInfo2ARB protocol was added in GLX 1.4 with the
- * GLX_ARB_create_context_profile extension. Verify that no
- * glXSetClientInfo2ARB is sent to a GLX server that has GLX 1.4 but has an
- * empty extension string (i.e., no extensions at all).
- */
- common_protocol_expected_false_test(1, 4,
- "",
- &SetClientInfo2ARB_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, doesnt_send_SetClientInfo2ARB_for_1_4_without_extension)
- {
- /* The glXSetClientInfo2ARB protocol was added in GLX 1.4 with the
- * GLX_ARB_create_context_profile extension. Verify that no
- * glXSetClientInfo2ARB is sent to a GLX server that has GLX 1.4 but
- * doesn't have the extension.
- */
- common_protocol_expected_false_test(1, 4,
- "GLX_EXT_texture_from_pixmap",
- &SetClientInfo2ARB_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, doesnt_send_SetClientInfo2ARB_for_1_4_with_wrong_extension)
- {
- /* The glXSetClientInfo2ARB protocol was added in GLX 1.4 with the
- * GLX_ARB_create_context_profile extension. Verify that no
- * glXSetClientInfo2ARB is sent to a GLX server that has GLX 1.4 but does
- * not have the extension.
- *
- * This test differs from
- * doesnt_send_SetClientInfo2ARB_for_1_4_without_extension in that an
- * extension exists that looks like the correct extension but isn't.
- */
- common_protocol_expected_false_test(1, 4,
- "GLX_ARB_create_context_profile2",
- &SetClientInfo2ARB_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, does_send_ClientInfo_for_1_1)
- {
- /* The glXClientInfo protocol was added in GLX 1.1. Verify that
- * glXClientInfo is sent to a GLX server that has GLX 1.1.
- */
- common_protocol_expected_true_test(1, 1,
- "",
- &ClientInfo_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, does_send_SetClientInfoARB_for_1_4_with_extension)
- {
- /* The glXSetClientInfoARB protocol was added in GLX 1.4 with the
- * GLX_ARB_create_context extension. Verify that glXSetClientInfoARB is
- * sent to a GLX server that has GLX 1.4 and the extension.
- */
- common_protocol_expected_true_test(1, 4,
- "GLX_ARB_create_context",
- &SetClientInfoARB_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, does_send_SetClientInfo2ARB_for_1_4_with_just_profile_extension)
- {
- /* The glXSetClientInfoARB protocol was added in GLX 1.4 with the
- * GLX_ARB_create_context extension. Verify that glXSetClientInfoARB is
- * sent to a GLX server that has GLX 1.4 and the extension.
- */
- common_protocol_expected_true_test(1, 4,
- "GLX_ARB_create_context_profile",
- &SetClientInfo2ARB_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, does_send_SetClientInfo2ARB_for_1_4_with_both_extensions)
- {
- /* The glXSetClientInfoARB protocol was added in GLX 1.4 with the
- * GLX_ARB_create_context extension. Verify that glXSetClientInfoARB is
- * sent to a GLX server that has GLX 1.4 and the extension.
- */
- common_protocol_expected_true_test(1, 4,
- "GLX_ARB_create_context "
- "GLX_ARB_create_context_profile",
- &SetClientInfo2ARB_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, does_send_SetClientInfo2ARB_for_1_4_with_both_extensions_reversed)
- {
- /* The glXSetClientInfoARB protocol was added in GLX 1.4 with the
- * GLX_ARB_create_context extension. Verify that glXSetClientInfoARB is
- * sent to a GLX server that has GLX 1.4 and the extension.
- */
- common_protocol_expected_true_test(1, 4,
- "GLX_ARB_create_context_profile "
- "GLX_ARB_create_context",
- &SetClientInfo2ARB_was_sent);
- }
-
- TEST_F(glX_send_client_info_test, uses_correct_connection)
- {
- create_single_screen_display(1, 1, "");
- __glX_send_client_info(this->glx_dpy);
- EXPECT_EQ((xcb_connection_t *) 0xdeadbeef, connection_used);
- }
-
- TEST_F(glX_send_client_info_test, sends_correct_gl_extension_string)
- {
- create_single_screen_display(1, 1, "");
- __glX_send_client_info(this->glx_dpy);
-
- ASSERT_EQ(sizeof(ext), gl_ext_length);
- ASSERT_NE((char *) 0, gl_ext_string);
- EXPECT_EQ(0, memcmp(gl_ext_string, ext, sizeof(ext)));
- }
-
- TEST_F(glX_send_client_info_test, gl_versions_are_sane)
- {
- create_single_screen_display(1, 4, "GLX_ARB_create_context");
- __glX_send_client_info(this->glx_dpy);
-
- ASSERT_NE(0, num_gl_versions);
-
- unsigned versions_below_3_0 = 0;
- for (int i = 0; i < num_gl_versions; i++) {
- EXPECT_LT(0, gl_versions[i * 2]);
- EXPECT_GE(4, gl_versions[i * 2]);
-
- /* Verify that the minor version advertised with the major version makes
- * sense.
- */
- switch (gl_versions[i * 2]) {
- case 1:
- EXPECT_GE(5, gl_versions[i * 2 + 1]);
- versions_below_3_0++;
- break;
- case 2:
- EXPECT_GE(1, gl_versions[i * 2 + 1]);
- versions_below_3_0++;
- break;
- case 3:
- EXPECT_GE(3, gl_versions[i * 2 + 1]);
- break;
- case 4:
- EXPECT_GE(2, gl_versions[i * 2 + 1]);
- break;
- }
- }
-
- /* From the GLX_ARB_create_context spec:
- *
- * "Only the highest supported version below 3.0 should be sent, since
- * OpenGL 2.1 is backwards compatible with all earlier versions."
- */
- EXPECT_LE(versions_below_3_0, 1);
- }
-
- TEST_F(glX_send_client_info_test, gl_versions_and_profiles_are_sane)
- {
- create_single_screen_display(1, 4, "GLX_ARB_create_context_profile");
- __glX_send_client_info(this->glx_dpy);
-
- ASSERT_NE(0, num_gl_versions);
-
- const uint32_t all_valid_bits = GLX_CONTEXT_CORE_PROFILE_BIT_ARB
- | GLX_CONTEXT_COMPATIBILITY_PROFILE_BIT_ARB;
-
- unsigned versions_below_3_0 = 0;
-
- for (int i = 0; i < num_gl_versions; i++) {
- EXPECT_LT(0, gl_versions[i * 3]);
- EXPECT_GE(4, gl_versions[i * 3]);
-
- /* Verify that the minor version advertised with the major version makes
- * sense.
- */
- switch (gl_versions[i * 3]) {
- case 1:
- EXPECT_GE(5, gl_versions[i * 3 + 1]);
- EXPECT_EQ(0, gl_versions[i * 3 + 2]);
- versions_below_3_0++;
- break;
- case 2:
- EXPECT_GE(1, gl_versions[i * 3 + 1]);
- EXPECT_EQ(0, gl_versions[i * 3 + 2]);
- versions_below_3_0++;
- break;
- case 3:
- EXPECT_GE(3, gl_versions[i * 3 + 1]);
-
- /* Profiles were not introduced until OpenGL 3.2.
- */
- if (gl_versions[i * 3 + 1] < 2) {
- EXPECT_EQ(0, gl_versions[i * 3 + 2]);
- } else {
- EXPECT_EQ(0, gl_versions[i * 3 + 2] & ~all_valid_bits);
- }
- break;
- case 4:
- EXPECT_GE(2, gl_versions[i * 3 + 1]);
- EXPECT_EQ(0, gl_versions[i * 3 + 2] & ~all_valid_bits);
- break;
- }
- }
-
- /* From the GLX_ARB_create_context_profile spec:
- *
- * "Only the highest supported version below 3.0 should be sent, since
- * OpenGL 2.1 is backwards compatible with all earlier versions."
- */
- EXPECT_LE(versions_below_3_0, 1);
- }
-
- TEST_F(glX_send_client_info_test, glx_version_is_1_4_for_1_1)
- {
- create_single_screen_display(1, 1, "");
- __glX_send_client_info(this->glx_dpy);
-
- EXPECT_EQ(1, glx_major);
- EXPECT_EQ(4, glx_minor);
- }
-
- TEST_F(glX_send_client_info_test, glx_version_is_1_4_for_1_4)
- {
- create_single_screen_display(1, 4, "");
- __glX_send_client_info(this->glx_dpy);
-
- EXPECT_EQ(1, glx_major);
- EXPECT_EQ(4, glx_minor);
- }
-
- TEST_F(glX_send_client_info_test, glx_version_is_1_4_for_1_4_with_ARB_create_context)
- {
- create_single_screen_display(1, 4, "GLX_ARB_create_context");
- __glX_send_client_info(this->glx_dpy);
-
- EXPECT_EQ(1, glx_major);
- EXPECT_EQ(4, glx_minor);
- }
-
- TEST_F(glX_send_client_info_test, glx_version_is_1_4_for_1_4_with_ARB_create_context_profile)
- {
- create_single_screen_display(1, 4, "GLX_ARB_create_context_profile");
- __glX_send_client_info(this->glx_dpy);
-
- EXPECT_EQ(1, glx_major);
- EXPECT_EQ(4, glx_minor);
- }
-
- TEST_F(glX_send_client_info_test, glx_version_is_1_4_for_1_5)
- {
- create_single_screen_display(1, 5, "");
- __glX_send_client_info(this->glx_dpy);
-
- EXPECT_EQ(1, glx_major);
- EXPECT_EQ(4, glx_minor);
- }
-
- TEST_F(glX_send_client_info_test, glx_extensions_has_GLX_ARB_create_context)
- {
- create_single_screen_display(1, 4, "GLX_ARB_create_context");
- __glX_send_client_info(this->glx_dpy);
-
- ASSERT_NE(0, glx_ext_length);
- ASSERT_NE((char *) 0, glx_ext_string);
-
- bool found_GLX_ARB_create_context = false;
- const char *const needle = "GLX_ARB_create_context";
- const unsigned len = strlen(needle);
- char *haystack = glx_ext_string;
- while (haystack != NULL) {
- char *match = strstr(haystack, needle);
-
- if (match[len] == '\0' || match[len] == ' ') {
- found_GLX_ARB_create_context = true;
- break;
- }
-
- haystack = match + len;
- }
-
- EXPECT_TRUE(found_GLX_ARB_create_context);
- }
-
- TEST_F(glX_send_client_info_test, glx_extensions_has_GLX_ARB_create_context_profile)
- {
- create_single_screen_display(1, 4, "GLX_ARB_create_context_profile");
- __glX_send_client_info(this->glx_dpy);
-
- ASSERT_NE(0, glx_ext_length);
- ASSERT_NE((char *) 0, glx_ext_string);
-
- bool found_GLX_ARB_create_context_profile = false;
- const char *const needle = "GLX_ARB_create_context_profile";
- const unsigned len = strlen(needle);
- char *haystack = glx_ext_string;
- while (haystack != NULL) {
- char *match = strstr(haystack, needle);
-
- if (match[len] == '\0' || match[len] == ' ') {
- found_GLX_ARB_create_context_profile = true;
- break;
- }
-
- haystack = match + len;
- }
-
- EXPECT_TRUE(found_GLX_ARB_create_context_profile);
- }
|