Jump to content
Eternal Lands Official Forums
Drakos7

Server tracking

Recommended Posts

Can you make sure that the logging of info like OpenGL versions is a config option? A few people might not like their system being queried for such information even if it does help our development.

Share this post


Link to post
Share on other sites

Well, doesn't compile anyway ...

 

sendvideoinfo.cpp: In function 'void send_video_info()':
sendvideoinfo.cpp:172: error: invalid conversion from 'int*' to 'GLint*'
sendvideoinfo.cpp:172: error:   initializing argument 2 of 'void glGetIntegerv(GLenum, GLint*)'
sendvideoinfo.cpp:175: error: invalid conversion from 'int*' to 'GLint*'
sendvideoinfo.cpp:175: error:   initializing argument 2 of 'void glGetIntegerv(GLenum, GLint*)'
sendvideoinfo.cpp:178: error: invalid conversion from 'int*' to 'GLint*'
sendvideoinfo.cpp:178: error:   initializing argument 2 of 'void glGetIntegerv(GLenum, GLint*)'
sendvideoinfo.cpp:182: error: invalid conversion from 'int*' to 'GLint*'
sendvideoinfo.cpp:182: error:   initializing argument 2 of 'void glGetIntegerv(GLenum, GLint*)'

 

patch

 

Index: sendvideoinfo.cpp
===================================================================
RCS file: /cvsroot/elc/elc/sendvideoinfo.cpp,v
retrieving revision 1.1
diff -u -d -p -r1.1 sendvideoinfo.cpp
--- sendvideoinfo.cpp   7 Sep 2007 01:08:14 -0000	   1.1
+++ sendvideoinfo.cpp   7 Sep 2007 07:44:43 -0000
@@ -140,7 +140,7 @@ extern "C" void send_video_info()
	bit_set_96 caps;
	xmlNode *root_element;
	xmlDoc *document;
-	   int i;
+	   GLint i;

	if (video_info_sent == 0)
	{

 

Don't whether this patch breaks functionality, it does compile though.

Edited by Florian

Share this post


Link to post
Share on other sites

Well, doesn't compile anyway ...

 

sendvideoinfo.cpp: In function 'void send_video_info()':
sendvideoinfo.cpp:172: error: invalid conversion from 'int*' to 'GLint*'
sendvideoinfo.cpp:172: error:   initializing argument 2 of 'void glGetIntegerv(GLenum, GLint*)'
sendvideoinfo.cpp:175: error: invalid conversion from 'int*' to 'GLint*'
sendvideoinfo.cpp:175: error:   initializing argument 2 of 'void glGetIntegerv(GLenum, GLint*)'
sendvideoinfo.cpp:178: error: invalid conversion from 'int*' to 'GLint*'
sendvideoinfo.cpp:178: error:   initializing argument 2 of 'void glGetIntegerv(GLenum, GLint*)'
sendvideoinfo.cpp:182: error: invalid conversion from 'int*' to 'GLint*'
sendvideoinfo.cpp:182: error:   initializing argument 2 of 'void glGetIntegerv(GLenum, GLint*)'

 

patch

 

Index: sendvideoinfo.cpp
===================================================================
RCS file: /cvsroot/elc/elc/sendvideoinfo.cpp,v
retrieving revision 1.1
diff -u -d -p -r1.1 sendvideoinfo.cpp
--- sendvideoinfo.cpp   7 Sep 2007 01:08:14 -0000	   1.1
+++ sendvideoinfo.cpp   7 Sep 2007 07:44:43 -0000
@@ -140,7 +140,7 @@ extern "C" void send_video_info()
	bit_set_96 caps;
	xmlNode *root_element;
	xmlDoc *document;
-	   int i;
+	   GLint i;

	if (video_info_sent == 0)
	{

 

Don't whether this patch breaks functionality, it does compile though.

Thanks for this, it was only a typo. Is in CVS now.

 

Can you make sure that the logging of info like OpenGL versions is a config option? A few people might not like their system being queried for such information even if it does help our development.

Is done. Set video_info_sent to one in el.ini and no data is send. The default value is zero for video_info_sent and after sending the data, the var is set to one, so that the data is only send once.

Share this post


Link to post
Share on other sites

I personally don't think there is any privacy concerns with what we send, afterall we only send the video card information, nothing that can be connected to specific computers or hardware.

Sort of like the user agent thing the browser sends to websites.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

  • Recently Browsing   0 members

    No registered users viewing this page.

×