Explorar el Código

CIS PS3 small fix

legacy
Benjamin ‘Touky’ Huet touky hace 11 años
padre
commit
c40aad64ed
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. +4
    -0
      src/video.cpp

+ 4
- 0
src/video.cpp Ver fichero

@@ -170,6 +170,8 @@ void Video::SetCustomSize(ivec2 size)
# define STR0(x) #x
# define STR(x) STR0(x)
# pragma message(__FILE__ "(" STR(__LINE__) "): warning: Video::SetSize() not implemented")
#elif defined __CELLOS_LV2__
// FIXME: use psglCreateDeviceAuto && psglGetDeviceDimensions
#else
glGetIntegerv(GL_VIEWPORT, (GLint*)&current_size);
if (current_size.zw != size)
@@ -184,6 +186,8 @@ void Video::RestoreSize()
# define STR0(x) #x
# define STR(x) STR0(x)
# pragma message(__FILE__ "(" STR(__LINE__) "): warning: Video::SetSize() not implemented")
#elif defined __CELLOS_LV2__
// FIXME: use psglCreateDeviceAuto && psglGetDeviceDimensions
#else
glGetIntegerv(GL_VIEWPORT, (GLint*)&current_size);
if (current_size.zw != VideoData::saved_viewport)


Cargando…
Cancelar
Guardar