소스 검색

android: enforce fullscreen on Android until we have several layouts.

legacy
Sam Hocevar sam 14 년 전
부모
커밋
c39012688f
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      src/video.cpp

+ 5
- 0
src/video.cpp 파일 보기

@@ -130,6 +130,11 @@ void Video::SetFov(float theta)
float near = -width - height;
float far = width + height;

#if defined ANDROID_NDK
width = 640.0f;
height = 480.0f;
#endif

/* Set the projection matrix */
if (theta < 1e-4f)
{


불러오는 중...
취소
저장