Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Indicate whether or not the device supports NEON within the…
… About fragment.
  • Loading branch information
lioncash committed Nov 15, 2013
1 parent d3731d0 commit 4bb22aa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions Source/Android/res/values-ja/strings.xml
Expand Up @@ -11,6 +11,7 @@
<!-- About Fragment -->
<string name="build_revision">ビルドのバージョン</string>
<string name="supports_gles3">サポートのOpenGL ES 3</string>
<string name="supports_neon">サポートのNEON</string>

<!-- Folder Browser -->
<string name="current_dir">現在のディレクトリ: %1$s</string>
Expand Down
1 change: 1 addition & 0 deletions Source/Android/res/values/strings.xml
Expand Up @@ -11,6 +11,7 @@
<!-- About Fragment -->
<string name="build_revision">Build Revision</string>
<string name="supports_gles3">Supports OpenGL ES 3</string>
<string name="supports_neon">Supports NEON</string>

<!-- Folder Browser -->
<string name="current_dir">Current Dir: %1$s</string>
Expand Down
Expand Up @@ -35,12 +35,13 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle sa
View rootView = inflater.inflate(R.layout.gamelist_listview, container, false);
ListView mMainList = (ListView) rootView.findViewById(R.id.gamelist);

String yes = getString(R.string.yes);
String no = getString(R.string.no);
final String yes = getString(R.string.yes);
final String no = getString(R.string.no);

List<AboutFragmentItem> Input = new ArrayList<AboutFragmentItem>();
Input.add(new AboutFragmentItem(getString(R.string.build_revision), NativeLibrary.GetVersionString()));
Input.add(new AboutFragmentItem(getString(R.string.supports_gles3), VideoSettingsFragment.SupportsGLES3() ? yes : no));
Input.add(new AboutFragmentItem(getString(R.string.supports_neon), NativeLibrary.SupportsNEON() ? yes : no));

AboutFragmentAdapter adapter = new AboutFragmentAdapter(m_activity, R.layout.about_layout, Input);
mMainList.setAdapter(adapter);
Expand Down

0 comments on commit 4bb22aa

Please sign in to comment.