Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: platform_tools/android/app/res/menu/action_bar.xml

Issue 60273006: Support MSAA4 and (non-ES) OpenGL in Android SampleApp (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: rebase now that api level changes are merged Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2011 Google Inc. 2 <!-- Copyright 2011 Google Inc.
3 3
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 7
8 <menu xmlns:android="http://schemas.android.com/apk/res/android"> 8 <menu xmlns:android="http://schemas.android.com/apk/res/android">
9 <item 9 <item
10 android:id="@+id/fps" 10 android:id="@+id/fps"
(...skipping 25 matching lines...) Expand all
36 /> 36 />
37 <item 37 <item
38 android:id="@+id/tiling" 38 android:id="@+id/tiling"
39 android:title="@string/tiling" 39 android:title="@string/tiling"
40 /> 40 />
41 <item 41 <item
42 android:id="@+id/bbox" 42 android:id="@+id/bbox"
43 android:title="@string/bbox" 43 android:title="@string/bbox"
44 /> 44 />
45 <item 45 <item
46 android:id="@+id/glcontext_menu"
47 android:title="@string/glcontext_menu">
48 <menu>
49 <item
50 android:id="@+id/glcontext_opengles"
51 android:title="@string/glcontext_opengles"
52 android:checkable="true"
53 />
54 <item
55 android:id="@+id/glcontext_msaa4_opengles"
56 android:title="@string/glcontext_msaa4_opengles"
57 android:checkable="true"
58 />
59 <item
60 android:id="@+id/glcontext_opengl"
61 android:title="@string/glcontext_opengl"
62 android:checkable="true"
63 />
64 <item
65 android:id="@+id/glcontext_msaa4_opengl"
66 android:title="@string/glcontext_msaa4_opengl"
67 android:checkable="true"
68 />
69 </menu>
70 </item>
71 <item
46 android:id="@+id/save_to_pdf" 72 android:id="@+id/save_to_pdf"
47 android:title="@string/save_to_pdf" 73 android:title="@string/save_to_pdf"
48 /> 74 />
49 </menu> 75 </menu>
OLDNEW
« no previous file with comments | « platform_tools/android/app/jni/com_skia_SkiaSampleRenderer.cpp ('k') | platform_tools/android/app/res/values/strings.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698