'WGL'에 해당되는 글 2건

  1. 2011.09.09 Xming 신버전은 유료?
  2. 2011.03.07 openGL, GLU, GLUT 관계 4

현재 sourceforge 상의 최신버전은 6.9.0.31 버전이고
font server 쪽으로는 신버전이 올라오고 있으며


2011년 8월 6일 릴리즈로는 7.5.0.39가 최신버전이다.
아무튼 신버전들은 donate 이후 id를 받아서 다운로드 받아야 한다 ㅠ.ㅠ

[링크 : http://www.straightrunning.com/XmingNotes/]

[링크 : http://www.straightrunning.com/XmingNotes/release2.php]


몇 버전부터 지원하는건진 모르겠지만 7.5.0.8 버전에서는 -wgl 옵션을 지원한다.
6.9.0.31 버전에서 -wgl을 넣으니 없는 옵션이라고 배쨈 ㅠ.ㅠ
If Xming's native Windows WGL interface for accelerated OpenGL (-wgl option from 7.5.0.8) doesn't work with a program then you can switch on various diagnostic output. Start Xming with special environment variables set 

[링크 : http://www.straightrunning.com/XmingNotes/trouble.php#head-19]  

아래 블로 링크에서 예제 파일을 받아 해보니 음.. 에러 숫자가 달라졌지만 아무튼
블로그에서 처럼 뜨질 않는데 무슨 차이일려나...
Expose event
X Error of failed request:  BadRequest (invalid request code or no such operation)
  Major opcode of failed request:  143 (GLX)
  Minor opcode of failed request:  182 ()
  Serial number of failed request:  33
  Current serial number in output stream:  41

[링크 : http://cloudlucifer.tistory.com/tag/xming
Posted by 구차니
Programming/openGL2011. 3. 7. 09:57
문서를 찾아봐도 딱히 연관관계에 관한 내용이 없어서 대충 끄적끄적 정리 -_-


openGL은 렌더링에 관련된 라이브러리로 내부에 정해진 쉐이더가 존재한다.(라고 하는데 알리가 없잖아 -_-)
이러한 쉐이더를 제어할 수 있는 녀석이 GLSL(Graphic Library Shader Language)이고
이를 편하게 하기 위해 만들어 진것이 GLEW(GL extension Wrangler Library) 이다.

그리고 openGL에 그리거나 조작을 할 수 있는 함수가
GLU(GL Utility library) 이고, GLU/GL에는 키보드나 마우스 등의 입력에 관한 처리가 없으므로
이를 처리해서 통합적으로 관리해주는 것이 GLUT(GL Utility Toolkit) 이다.

아무튼 GLUT의 경우에는 OS에 따른 플랫폼을 포함하므로 openGL과 GLUT사이에는
GLX(GL extension for unix/Linux Xwindow) 혹은 WGL(GL extension for Microsoft Windows)가 존재할 듯?
XGL은 GLX를 지원하는 Xserver라고 한다.



'Programming > openGL' 카테고리의 다른 글

GLUT(openGL Utility Toolkit) 다운로드 (윈도우)  (0) 2011.03.15
openGL tutorial  (0) 2011.03.12
openGL - GLUT  (0) 2010.08.26
glBegin() / glEnd()  (3) 2010.08.23
openGL 문서들  (0) 2010.08.22
Posted by 구차니