Merge branch 'master' into wii-network

This commit is contained in:
Matthew Parlane 2013-04-25 02:35:39 +12:00
commit 3f46f26c49
3 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<projectDescription> <projectDescription>
<name>ppsspp</name> <name>dolphinemulator</name>
<comment></comment> <comment></comment>
<projects> <projects>
</projects> </projects>

View File

@ -9,6 +9,7 @@ import java.io.OutputStream;
import net.simonvt.menudrawer.MenuDrawer; import net.simonvt.menudrawer.MenuDrawer;
import android.app.Activity; import android.app.Activity;
import android.content.Context;
import android.content.Intent; import android.content.Intent;
import android.os.Bundle; import android.os.Bundle;
import android.os.Environment; import android.os.Environment;
@ -135,7 +136,7 @@ public class DolphinEmulator<MainActivity> extends Activity
if (resultCode == Activity.RESULT_OK) if (resultCode == Activity.RESULT_OK)
{ {
DisplayMetrics displayMetrics = new DisplayMetrics(); DisplayMetrics displayMetrics = new DisplayMetrics();
WindowManager wm = (WindowManager) getApplicationContext().getSystemService(getApplicationContext().WINDOW_SERVICE); // the results will be higher than using the activity context object or the getWindowManager() shortcut WindowManager wm = (WindowManager) getApplicationContext().getSystemService(Context.WINDOW_SERVICE); // the results will be higher than using the activity context object or the getWindowManager() shortcut
wm.getDefaultDisplay().getMetrics(displayMetrics); wm.getDefaultDisplay().getMetrics(displayMetrics);
screenWidth = displayMetrics.widthPixels; screenWidth = displayMetrics.widthPixels;
screenHeight = displayMetrics.heightPixels; screenHeight = displayMetrics.heightPixels;

View File

@ -68,6 +68,10 @@
#include <wx/image.h> #include <wx/image.h>
#endif #endif
// glew1.8 doesn't define KHR_debug
#ifndef GL_DEBUG_OUTPUT
#define GL_DEBUG_OUTPUT 0x92E0
#endif
void VideoConfig::UpdateProjectionHack() void VideoConfig::UpdateProjectionHack()