├── MODULE_LICENSE_APACHE2 ├── NOTICE ├── aidl ├── binder │ └── android │ │ └── os │ │ └── PersistableBundle.aidl └── gui │ └── android │ └── view │ └── Surface.aidl ├── cmds ├── atrace │ ├── Android.mk │ ├── MODULE_LICENSE_APACHE2 │ ├── NOTICE │ ├── atrace.cpp │ └── atrace.rc ├── bugreport │ ├── Android.mk │ └── bugreport.cpp ├── bugreportz │ ├── .clang-format │ ├── Android.mk │ ├── bugreportz.cpp │ ├── bugreportz.h │ ├── bugreportz_test.cpp │ ├── main.cpp │ └── readme.md ├── cmd │ ├── Android.mk │ ├── MODULE_LICENSE_APACHE2 │ ├── NOTICE │ └── cmd.cpp ├── dumpstate │ ├── Android.mk │ ├── bugreport-format.md │ ├── dumpstate.cpp │ ├── dumpstate.h │ ├── dumpstate.rc │ ├── libdumpstate_default.cpp │ └── utils.cpp ├── dumpsys │ ├── Android.mk │ ├── MODULE_LICENSE_APACHE2 │ ├── NOTICE │ └── dumpsys.cpp ├── flatland │ ├── Android.mk │ ├── Composers.cpp │ ├── Flatland.h │ ├── GLHelper.cpp │ ├── GLHelper.h │ ├── Main.cpp │ ├── README.txt │ └── Renderers.cpp ├── installd │ ├── Android.mk │ ├── commands.cpp │ ├── commands.h │ ├── file_parsing.h │ ├── globals.cpp │ ├── globals.h │ ├── installd.cpp │ ├── installd.rc │ ├── installd_constants.h │ ├── installd_deps.h │ ├── otapreopt.cpp │ ├── otapreopt.rc │ ├── otapreopt_chroot.cpp │ ├── otapreopt_script.sh │ ├── otapreopt_slot.sh │ ├── otapreopt_utils.h │ ├── system_properties.h │ ├── tests │ │ ├── Android.mk │ │ └── installd_utils_test.cpp │ ├── utils.cpp │ └── utils.h ├── ip-up-vpn │ ├── Android.mk │ └── ip-up-vpn.c ├── rawbu │ ├── Android.mk │ ├── NOTICE │ └── backup.cpp ├── service │ ├── Android.mk │ ├── MODULE_LICENSE_APACHE2 │ ├── NOTICE │ └── service.cpp └── servicemanager │ ├── Android.mk │ ├── bctest.c │ ├── binder.c │ ├── binder.h │ ├── service_manager.c │ └── servicemanager.rc ├── data └── etc │ ├── android.hardware.audio.low_latency.xml │ ├── android.hardware.audio.output.xml │ ├── android.hardware.audio.pro.xml │ ├── android.hardware.bluetooth.xml │ ├── android.hardware.bluetooth_le.xml │ ├── android.hardware.camera.autofocus.xml │ ├── android.hardware.camera.external.xml │ ├── android.hardware.camera.flash-autofocus.xml │ ├── android.hardware.camera.front.xml │ ├── android.hardware.camera.full.xml │ ├── android.hardware.camera.manual_postprocessing.xml │ ├── android.hardware.camera.manual_sensor.xml │ ├── android.hardware.camera.raw.xml │ ├── android.hardware.camera.xml │ ├── android.hardware.consumerir.xml │ ├── android.hardware.ethernet.xml │ ├── android.hardware.faketouch.multitouch.distinct.xml │ ├── android.hardware.faketouch.multitouch.jazzhand.xml │ ├── android.hardware.faketouch.xml │ ├── android.hardware.fingerprint.xml │ ├── android.hardware.gamepad.xml │ ├── android.hardware.hdmi.cec.xml │ ├── android.hardware.location.gps.xml │ ├── android.hardware.location.xml │ ├── android.hardware.nfc.hce.xml │ ├── android.hardware.nfc.hcef.xml │ ├── android.hardware.nfc.xml │ ├── android.hardware.opengles.aep.xml │ ├── android.hardware.screen.landscape.xml │ ├── android.hardware.screen.portrait.xml │ ├── android.hardware.sensor.accelerometer.xml │ ├── android.hardware.sensor.ambient_temperature.xml │ ├── android.hardware.sensor.barometer.xml │ ├── android.hardware.sensor.compass.xml │ ├── android.hardware.sensor.gyroscope.xml │ ├── android.hardware.sensor.heartrate.ecg.xml │ ├── android.hardware.sensor.heartrate.xml │ ├── android.hardware.sensor.hifi_sensors.xml │ ├── android.hardware.sensor.light.xml │ ├── android.hardware.sensor.proximity.xml │ ├── android.hardware.sensor.relative_humidity.xml │ ├── android.hardware.sensor.stepcounter.xml │ ├── android.hardware.sensor.stepdetector.xml │ ├── android.hardware.telephony.cdma.xml │ ├── android.hardware.telephony.gsm.xml │ ├── android.hardware.touchscreen.multitouch.distinct.xml │ ├── android.hardware.touchscreen.multitouch.jazzhand.xml │ ├── android.hardware.touchscreen.multitouch.xml │ ├── android.hardware.touchscreen.xml │ ├── android.hardware.type.automotive.xml │ ├── android.hardware.usb.accessory.xml │ ├── android.hardware.usb.host.xml │ ├── android.hardware.vr.high_performance.xml │ ├── android.hardware.vulkan.level-0.xml │ ├── android.hardware.vulkan.level-1.xml │ ├── android.hardware.vulkan.version-1_0_3.xml │ ├── android.hardware.wifi.direct.xml │ ├── android.hardware.wifi.nan.xml │ ├── android.hardware.wifi.xml │ ├── android.software.app_widgets.xml │ ├── android.software.backup.xml │ ├── android.software.connectionservice.xml │ ├── android.software.device_admin.xml │ ├── android.software.freeform_window_management.xml │ ├── android.software.live_tv.xml │ ├── android.software.managed_users.xml │ ├── android.software.midi.xml │ ├── android.software.picture_in_picture.xml │ ├── android.software.print.xml │ ├── android.software.securely_removes_users.xml │ ├── android.software.sip.voip.xml │ ├── android.software.sip.xml │ ├── android.software.verified_boot.xml │ ├── android.software.voice_recognizers.xml │ ├── android.software.vr.xml │ ├── android.software.webview.xml │ ├── car_core_hardware.xml │ ├── com.android.nfc_extras.xml │ ├── com.nxp.mifare.xml │ ├── handheld_core_hardware.xml │ ├── tablet_core_hardware.xml │ └── wearable_core_hardware.xml ├── docs ├── Doxyfile ├── Makefile ├── footer.html ├── header.html └── images │ └── camera2 │ └── metadata │ ├── android.colorCorrection.mode │ └── processing_pipeline.png │ ├── android.statistics.lensShadingMap │ ├── blue_shading.png │ ├── green_e_shading.png │ ├── green_o_shading.png │ ├── inv_shading.png │ └── red_shading.png │ └── android.tonemap.curveRed │ ├── gamma_tonemap.png │ ├── inverse_tonemap.png │ ├── linear_tonemap.png │ ├── rec709_tonemap.png │ └── srgb_tonemap.png ├── include ├── android │ ├── asset_manager.h │ ├── asset_manager_jni.h │ ├── bitmap.h │ ├── choreographer.h │ ├── configuration.h │ ├── input.h │ ├── keycodes.h │ ├── looper.h │ ├── multinetwork.h │ ├── native_activity.h │ ├── native_window.h │ ├── native_window_jni.h │ ├── obb.h │ ├── rect.h │ ├── sensor.h │ ├── storage_manager.h │ ├── trace.h │ └── window.h ├── batteryservice │ ├── BatteryService.h │ ├── IBatteryPropertiesListener.h │ └── IBatteryPropertiesRegistrar.h ├── binder │ ├── AppOpsManager.h │ ├── Binder.h │ ├── BinderService.h │ ├── BpBinder.h │ ├── BufferedTextOutput.h │ ├── Debug.h │ ├── IAppOpsCallback.h │ ├── IAppOpsService.h │ ├── IBatteryStats.h │ ├── IBinder.h │ ├── IInterface.h │ ├── IMediaResourceMonitor.h │ ├── IMemory.h │ ├── IPCThreadState.h │ ├── IPermissionController.h │ ├── IProcessInfoService.h │ ├── IResultReceiver.h │ ├── IServiceManager.h │ ├── MemoryBase.h │ ├── MemoryDealer.h │ ├── MemoryHeapBase.h │ ├── MemoryHeapIon.h │ ├── Parcel.h │ ├── Parcelable.h │ ├── PermissionCache.h │ ├── PersistableBundle.h │ ├── ProcessInfoService.h │ ├── ProcessState.h │ ├── Status.h │ └── TextOutput.h ├── diskusage │ └── dirsize.h ├── gui │ ├── BitTube.h │ ├── BufferItem.h │ ├── BufferItemConsumer.h │ ├── BufferQueue.h │ ├── BufferQueueConsumer.h │ ├── BufferQueueCore.h │ ├── BufferQueueDefs.h │ ├── BufferQueueProducer.h │ ├── BufferSlot.h │ ├── ConsumerBase.h │ ├── CpuConsumer.h │ ├── DisplayEventReceiver.h │ ├── FrameTimestamps.h │ ├── GLConsumer.h │ ├── GraphicBufferAlloc.h │ ├── GuiConfig.h │ ├── IConsumerListener.h │ ├── IDisplayEventConnection.h │ ├── IGraphicBufferAlloc.h │ ├── IGraphicBufferConsumer.h │ ├── IGraphicBufferProducer.h │ ├── IProducerListener.h │ ├── ISensorEventConnection.h │ ├── ISensorServer.h │ ├── ISurfaceComposer.h │ ├── ISurfaceComposerClient.h │ ├── OccupancyTracker.h │ ├── Sensor.h │ ├── SensorEventQueue.h │ ├── SensorManager.h │ ├── StreamSplitter.h │ ├── Surface.h │ ├── SurfaceComposerClient.h │ └── SurfaceControl.h ├── input │ ├── IInputFlinger.h │ ├── Input.h │ ├── InputDevice.h │ ├── InputEventLabels.h │ ├── InputTransport.h │ ├── KeyCharacterMap.h │ ├── KeyLayoutMap.h │ ├── Keyboard.h │ ├── VelocityControl.h │ ├── VelocityTracker.h │ └── VirtualKeyMap.h ├── media │ ├── drm │ │ └── DrmAPI.h │ ├── editor │ │ └── II420ColorConverter.h │ ├── hardware │ │ ├── CryptoAPI.h │ │ ├── HDCPAPI.h │ │ ├── HardwareAPI.h │ │ ├── MetadataBufferType.h │ │ ├── OMXPluginBase.h │ │ └── VideoAPI.h │ └── openmax │ │ ├── OMX_AsString.h │ │ ├── OMX_Audio.h │ │ ├── OMX_AudioExt.h │ │ ├── OMX_Component.h │ │ ├── OMX_ContentPipe.h │ │ ├── OMX_Core.h │ │ ├── OMX_IVCommon.h │ │ ├── OMX_Image.h │ │ ├── OMX_Index.h │ │ ├── OMX_IndexExt.h │ │ ├── OMX_Other.h │ │ ├── OMX_Types.h │ │ ├── OMX_Video.h │ │ └── OMX_VideoExt.h ├── powermanager │ ├── IPowerManager.h │ └── PowerManager.h ├── private │ ├── binder │ │ ├── Static.h │ │ └── binder_module.h │ ├── gui │ │ ├── ComposerService.h │ │ ├── LayerState.h │ │ └── SyncFeatures.h │ └── ui │ │ └── RegionHelper.h └── ui │ ├── ANativeObjectBase.h │ ├── DisplayInfo.h │ ├── DisplayStatInfo.h │ ├── Fence.h │ ├── FrameStats.h │ ├── Gralloc1.h │ ├── Gralloc1On0Adapter.h │ ├── GraphicBuffer.h │ ├── GraphicBufferAllocator.h │ ├── GraphicBufferMapper.h │ ├── HdrCapabilities.h │ ├── PixelFormat.h │ ├── Point.h │ ├── Rect.h │ ├── Region.h │ ├── TMatHelpers.h │ ├── TVecHelpers.h │ ├── UiConfig.h │ ├── mat4.h │ ├── vec2.h │ ├── vec3.h │ └── vec4.h ├── libs ├── binder │ ├── Android.mk │ ├── AppOpsManager.cpp │ ├── Binder.cpp │ ├── BpBinder.cpp │ ├── BufferedTextOutput.cpp │ ├── Debug.cpp │ ├── IAppOpsCallback.cpp │ ├── IAppOpsService.cpp │ ├── IBatteryStats.cpp │ ├── IInterface.cpp │ ├── IMediaResourceMonitor.cpp │ ├── IMemory.cpp │ ├── IPCThreadState.cpp │ ├── IPermissionController.cpp │ ├── IProcessInfoService.cpp │ ├── IResultReceiver.cpp │ ├── IServiceManager.cpp │ ├── MemoryBase.cpp │ ├── MemoryDealer.cpp │ ├── MemoryHeapBase.cpp │ ├── MemoryHeapIon.cpp │ ├── Parcel.cpp │ ├── PermissionCache.cpp │ ├── PersistableBundle.cpp │ ├── ProcessInfoService.cpp │ ├── ProcessState.cpp │ ├── Static.cpp │ ├── Status.cpp │ ├── TextOutput.cpp │ └── tests │ │ ├── Android.mk │ │ ├── binderDriverInterfaceTest.cpp │ │ ├── binderLibTest.cpp │ │ └── binderThroughputTest.cpp ├── diskusage │ ├── Android.mk │ ├── MODULE_LICENSE_APACHE2 │ └── dirsize.c ├── gui │ ├── Android.mk │ ├── BitTube.cpp │ ├── BufferItem.cpp │ ├── BufferItemConsumer.cpp │ ├── BufferQueue.cpp │ ├── BufferQueueConsumer.cpp │ ├── BufferQueueCore.cpp │ ├── BufferQueueProducer.cpp │ ├── BufferSlot.cpp │ ├── CleanSpec.mk │ ├── ConsumerBase.cpp │ ├── CpuConsumer.cpp │ ├── DisplayEventReceiver.cpp │ ├── GLConsumer.cpp │ ├── GraphicBufferAlloc.cpp │ ├── GuiConfig.cpp │ ├── IConsumerListener.cpp │ ├── IDisplayEventConnection.cpp │ ├── IGraphicBufferAlloc.cpp │ ├── IGraphicBufferConsumer.cpp │ ├── IGraphicBufferProducer.cpp │ ├── IProducerListener.cpp │ ├── ISensorEventConnection.cpp │ ├── ISensorServer.cpp │ ├── ISurfaceComposer.cpp │ ├── ISurfaceComposerClient.cpp │ ├── LayerState.cpp │ ├── OccupancyTracker.cpp │ ├── Sensor.cpp │ ├── SensorEventQueue.cpp │ ├── SensorManager.cpp │ ├── StreamSplitter.cpp │ ├── Surface.cpp │ ├── SurfaceComposerClient.cpp │ ├── SurfaceControl.cpp │ ├── SyncFeatures.cpp │ └── tests │ │ ├── Android.mk │ │ ├── BufferQueue_test.cpp │ │ ├── CpuConsumer_test.cpp │ │ ├── DisconnectWaiter.h │ │ ├── DummyConsumer.h │ │ ├── FillBuffer.cpp │ │ ├── FillBuffer.h │ │ ├── FrameWaiter.h │ │ ├── GLTest.cpp │ │ ├── GLTest.h │ │ ├── IGraphicBufferProducer_test.cpp │ │ ├── MultiTextureConsumer_test.cpp │ │ ├── SRGB_test.cpp │ │ ├── StreamSplitter_test.cpp │ │ ├── SurfaceTextureClient_test.cpp │ │ ├── SurfaceTextureFBO.h │ │ ├── SurfaceTextureFBO_test.cpp │ │ ├── SurfaceTextureGL.h │ │ ├── SurfaceTextureGLThreadToGL.h │ │ ├── SurfaceTextureGLThreadToGL_test.cpp │ │ ├── SurfaceTextureGLToGL.h │ │ ├── SurfaceTextureGLToGL_test.cpp │ │ ├── SurfaceTextureGL_test.cpp │ │ ├── SurfaceTextureMultiContextGL.h │ │ ├── SurfaceTextureMultiContextGL_test.cpp │ │ ├── Surface_test.cpp │ │ ├── TextureRenderer.cpp │ │ └── TextureRenderer.h ├── input │ ├── Android.mk │ ├── IInputFlinger.cpp │ ├── Input.cpp │ ├── InputDevice.cpp │ ├── InputTransport.cpp │ ├── KeyCharacterMap.cpp │ ├── KeyLayoutMap.cpp │ ├── Keyboard.cpp │ ├── VelocityControl.cpp │ ├── VelocityTracker.cpp │ ├── VirtualKeyMap.cpp │ └── tests │ │ ├── Android.mk │ │ ├── InputChannel_test.cpp │ │ ├── InputEvent_test.cpp │ │ ├── InputPublisherAndConsumer_test.cpp │ │ ├── StructLayout_test.cpp │ │ └── TestHelpers.h └── ui │ ├── Android.mk │ ├── Fence.cpp │ ├── FrameStats.cpp │ ├── Gralloc1.cpp │ ├── Gralloc1On0Adapter.cpp │ ├── GraphicBuffer.cpp │ ├── GraphicBufferAllocator.cpp │ ├── GraphicBufferMapper.cpp │ ├── HdrCapabilities.cpp │ ├── MODULE_LICENSE_APACHE2 │ ├── NOTICE │ ├── PixelFormat.cpp │ ├── Rect.cpp │ ├── Region.cpp │ ├── UiConfig.cpp │ └── tests │ ├── Android.mk │ ├── Region_test.cpp │ ├── mat_test.cpp │ └── vec_test.cpp ├── opengl ├── include │ ├── EGL │ │ ├── egl.h │ │ ├── eglext.h │ │ └── eglplatform.h │ ├── ETC1 │ │ └── etc1.h │ ├── GLES │ │ ├── egl.h │ │ ├── gl.h │ │ ├── glext.h │ │ └── glplatform.h │ ├── GLES2 │ │ ├── gl2.h │ │ ├── gl2ext.h │ │ └── gl2platform.h │ ├── GLES3 │ │ ├── gl3.h │ │ ├── gl31.h │ │ ├── gl32.h │ │ ├── gl3ext.h │ │ └── gl3platform.h │ ├── KHR │ │ └── khrplatform.h │ └── MODULE_LICENSE_MIT ├── libagl │ ├── Android.mk │ ├── BufferObjectManager.cpp │ ├── BufferObjectManager.h │ ├── TextureObjectManager.cpp │ ├── TextureObjectManager.h │ ├── TokenManager.cpp │ ├── TokenManager.h │ ├── Tokenizer.cpp │ ├── Tokenizer.h │ ├── arch-mips │ │ └── fixed_asm.S │ ├── array.cpp │ ├── array.h │ ├── context.h │ ├── dxt.cpp │ ├── dxt.h │ ├── egl.cpp │ ├── fixed_asm.S │ ├── fp.cpp │ ├── fp.h │ ├── iterators.S │ ├── light.cpp │ ├── light.h │ ├── matrix.cpp │ ├── matrix.h │ ├── mipmap.cpp │ ├── primitives.cpp │ ├── primitives.h │ ├── state.cpp │ ├── state.h │ ├── texture.cpp │ ├── texture.h │ ├── vertex.cpp │ └── vertex.h ├── libs │ ├── Android.mk │ ├── EGL │ │ ├── Loader.cpp │ │ ├── Loader.h │ │ ├── egl.cpp │ │ ├── eglApi.cpp │ │ ├── egl_cache.cpp │ │ ├── egl_cache.h │ │ ├── egl_display.cpp │ │ ├── egl_display.h │ │ ├── egl_entries.in │ │ ├── egl_object.cpp │ │ ├── egl_object.h │ │ ├── egl_tls.cpp │ │ ├── egl_tls.h │ │ ├── egldefs.h │ │ └── getProcAddress.cpp │ ├── ETC1 │ │ └── etc1.cpp │ ├── GLES2 │ │ ├── gl2.cpp │ │ ├── gl2_api.in │ │ └── gl2ext_api.in │ ├── GLES_CM │ │ ├── gl.cpp │ │ ├── gl_api.in │ │ └── glext_api.in │ ├── egl_impl.h │ ├── entries.in │ ├── enums.in │ ├── hooks.h │ └── tools │ │ ├── genfiles │ │ ├── glapigen │ │ ├── glentrygen │ │ └── glenumsgen ├── specs │ ├── EGL_ANDROID_blob_cache.txt │ ├── EGL_ANDROID_create_native_client_buffer.txt │ ├── EGL_ANDROID_framebuffer_target.txt │ ├── EGL_ANDROID_front_buffer_auto_refresh.txt │ ├── EGL_ANDROID_get_frame_timestamps.txt │ ├── EGL_ANDROID_image_native_buffer.txt │ ├── EGL_ANDROID_native_fence_sync.txt │ ├── EGL_ANDROID_presentation_time.txt │ ├── EGL_ANDROID_recordable.txt │ └── README ├── tests │ ├── Android.mk │ ├── EGLTest │ │ ├── Android.mk │ │ ├── EGL_test.cpp │ │ └── egl_cache_test.cpp │ ├── angeles │ │ ├── Android.mk │ │ ├── MODULE_LICENSE_BSD_OR_LGPL │ │ ├── README.txt │ │ ├── app-linux.cpp │ │ ├── app.h │ │ ├── cams.h │ │ ├── demo.c │ │ ├── include │ │ │ └── GLES │ │ │ │ ├── egl.h │ │ │ │ ├── egltypes.h │ │ │ │ └── gl.h │ │ ├── license-BSD.txt │ │ ├── license-LGPL.txt │ │ ├── license.txt │ │ └── shapes.h │ ├── configdump │ │ ├── Android.mk │ │ └── configdump.cpp │ ├── fillrate │ │ ├── Android.mk │ │ └── fillrate.cpp │ ├── filter │ │ ├── Android.mk │ │ └── filter.cpp │ ├── finish │ │ ├── Android.mk │ │ └── finish.cpp │ ├── gl2_basic │ │ ├── Android.mk │ │ └── gl2_basic.cpp │ ├── gl2_cameraeye │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── res │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── com │ │ │ └── android │ │ │ └── gl2cameraeye │ │ │ └── GL2CameraEye.java │ ├── gl2_copyTexImage │ │ ├── Android.mk │ │ └── gl2_copyTexImage.cpp │ ├── gl2_java │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── res │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── com │ │ │ └── android │ │ │ └── gl2java │ │ │ ├── GL2JavaActivity.java │ │ │ └── GL2JavaView.java │ ├── gl2_jni │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── jni │ │ │ └── gl_code.cpp │ │ ├── res │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── com │ │ │ └── android │ │ │ └── gl2jni │ │ │ ├── GL2JNIActivity.java │ │ │ ├── GL2JNILib.java │ │ │ └── GL2JNIView.java │ ├── gl2_yuvtex │ │ ├── Android.mk │ │ └── gl2_yuvtex.cpp │ ├── gl_basic │ │ ├── Android.mk │ │ └── gl_basic.cpp │ ├── gl_jni │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── jni │ │ │ └── gl_code.cpp │ │ ├── res │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── com │ │ │ └── android │ │ │ └── gljni │ │ │ ├── GLJNIActivity.java │ │ │ ├── GLJNILib.java │ │ │ └── GLJNIView.java │ ├── gl_perf │ │ ├── Android.mk │ │ ├── fill_common.cpp │ │ ├── filltest.cpp │ │ ├── fragment_shaders.cpp │ │ └── gl2_perf.cpp │ ├── gl_perfapp │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── jni │ │ │ └── gl_code.cpp │ │ ├── res │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── com │ │ │ └── android │ │ │ └── glperf │ │ │ ├── GLPerfActivity.java │ │ │ ├── GLPerfLib.java │ │ │ └── GLPerfView.java │ ├── gl_yuvtex │ │ ├── Android.mk │ │ └── gl_yuvtex.cpp │ ├── gldual │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── jni │ │ │ └── gl_code.cpp │ │ ├── res │ │ │ ├── layout │ │ │ │ └── gldual_activity.xml │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── com │ │ │ └── android │ │ │ └── gldual │ │ │ ├── GLDualActivity.java │ │ │ ├── GLDualGL2View.java │ │ │ ├── GLDualLib.java │ │ │ └── TriangleRenderer.java │ ├── gralloc │ │ ├── Android.mk │ │ └── gralloc.cpp │ ├── hwc │ │ ├── Android.mk │ │ ├── hwcColorEquiv.cpp │ │ ├── hwcCommit.cpp │ │ ├── hwcRects.cpp │ │ ├── hwcStress.cpp │ │ ├── hwcTestLib.cpp │ │ └── hwcTestLib.h │ ├── include │ │ ├── EGLUtils.h │ │ ├── WindowSurface.h │ │ └── glTestLib.h │ ├── lib │ │ ├── Android.mk │ │ ├── WindowSurface.cpp │ │ └── glTestLib.cpp │ ├── lighting1709 │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ └── src │ │ │ └── com │ │ │ └── android │ │ │ └── lightingtest │ │ │ └── ClearActivity.java │ ├── linetex │ │ ├── Android.mk │ │ └── linetex.cpp │ ├── swapinterval │ │ ├── Android.mk │ │ └── swapinterval.cpp │ ├── testFramerate │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── res │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── com │ │ │ └── android │ │ │ └── testframerate │ │ │ ├── TestFramerateActivity.java │ │ │ └── TestFramerateView.java │ ├── testLatency │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── res │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── com │ │ │ └── android │ │ │ └── testlatency │ │ │ ├── TestLatencyActivity.java │ │ │ └── TestLatencyView.java │ ├── testPauseResume │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── README │ │ ├── res │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── com │ │ │ └── android │ │ │ └── test │ │ │ ├── TestActivity.java │ │ │ └── TestView.java │ ├── testViewport │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── README │ │ ├── res │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── src │ │ │ └── com │ │ │ └── android │ │ │ └── test │ │ │ ├── TestActivity.java │ │ │ └── TestView.java │ ├── textures │ │ ├── Android.mk │ │ └── textures.cpp │ └── tritex │ │ ├── Android.mk │ │ └── tritex.cpp └── tools │ ├── glgen │ ├── .gitignore │ ├── convert_to_java.py │ ├── gen │ ├── specs │ │ ├── egl │ │ │ ├── EGL14.spec │ │ │ ├── EGLExt.spec │ │ │ └── checks.spec │ │ ├── gles11 │ │ │ ├── GLES10.spec │ │ │ ├── GLES10Ext.spec │ │ │ ├── GLES11.spec │ │ │ ├── GLES11Ext.spec │ │ │ ├── GLES20.spec │ │ │ ├── GLES30.spec │ │ │ ├── GLES31.spec │ │ │ ├── GLES31Ext.spec │ │ │ ├── GLES32.spec │ │ │ └── checks.spec │ │ └── jsr239 │ │ │ ├── glspec-1.0 │ │ │ ├── glspec-1.0ext │ │ │ ├── glspec-1.1 │ │ │ ├── glspec-1.1ext │ │ │ ├── glspec-1.1extpack │ │ │ └── glspec-checks │ ├── src │ │ ├── .gitignore │ │ ├── CFunc.java │ │ ├── CType.java │ │ ├── CodeEmitter.java │ │ ├── EGLCodeEmitter.java │ │ ├── GLESCodeEmitter.java │ │ ├── GenerateEGL.java │ │ ├── GenerateGL.java │ │ ├── GenerateGLES.java │ │ ├── JFunc.java │ │ ├── JType.java │ │ ├── JniCodeEmitter.java │ │ ├── Jsr239CodeEmitter.java │ │ └── ParameterChecker.java │ ├── static │ │ └── egl │ │ │ ├── EGLConfig.java │ │ │ ├── EGLContext.java │ │ │ ├── EGLDisplay.java │ │ │ ├── EGLObjectHandle.java │ │ │ └── EGLSurface.java │ └── stubs │ │ ├── egl │ │ ├── EGL14Header.java-if │ │ ├── EGL14cHeader.cpp │ │ ├── EGLExtHeader.java-if │ │ ├── EGLExtcHeader.cpp │ │ ├── eglCreatePbufferFromClientBuffer.cpp │ │ ├── eglCreatePbufferFromClientBuffer.java │ │ ├── eglCreatePbufferFromClientBuffer.nativeReg │ │ ├── eglCreateWindowSurface.cpp │ │ ├── eglCreateWindowSurface.java │ │ ├── eglCreateWindowSurface.nativeReg │ │ ├── eglGetDisplay.cpp │ │ ├── eglGetDisplay.java │ │ ├── eglGetDisplay.nativeReg │ │ ├── eglQueryString.cpp │ │ ├── eglQueryString.java │ │ └── eglQueryString.nativeReg │ │ ├── gles11 │ │ ├── GLES10ExtHeader.java-if │ │ ├── GLES10ExtcHeader.cpp │ │ ├── GLES10Header.java-if │ │ ├── GLES10cHeader.cpp │ │ ├── GLES11ExtHeader.java-if │ │ ├── GLES11ExtcHeader.cpp │ │ ├── GLES11Header.java-if │ │ ├── GLES11cHeader.cpp │ │ ├── GLES20Header.java-if │ │ ├── GLES20cHeader.cpp │ │ ├── GLES30Header.java-if │ │ ├── GLES30cHeader.cpp │ │ ├── GLES31ExtHeader.java-if │ │ ├── GLES31ExtcHeader.cpp │ │ ├── GLES31Header.java-if │ │ ├── GLES31cHeader.cpp │ │ ├── GLES32Header.java-if │ │ ├── GLES32cHeader.cpp │ │ ├── common.cpp │ │ ├── glBindVertexBuffer.cpp │ │ ├── glBindVertexBuffer.java │ │ ├── glBindVertexBuffer.nativeReg │ │ ├── glCreateShaderProgramv.cpp │ │ ├── glCreateShaderProgramv.java │ │ ├── glCreateShaderProgramv.nativeReg │ │ ├── glDebugMessageCallback.cpp │ │ ├── glDebugMessageCallback.java │ │ ├── glDebugMessageCallback.nativeReg │ │ ├── glDebugMessageCallbackKHR.cpp │ │ ├── glDebugMessageCallbackKHR.java │ │ ├── glDebugMessageCallbackKHR.nativeReg │ │ ├── glDebugMessageInsertKHR.cpp │ │ ├── glDebugMessageInsertKHR.java │ │ ├── glDebugMessageInsertKHR.nativeReg │ │ ├── glDispatchComputeIndirect.cpp │ │ ├── glDispatchComputeIndirect.java │ │ ├── glDispatchComputeIndirect.nativeReg │ │ ├── glDrawArraysIndirect.cpp │ │ ├── glDrawArraysIndirect.java │ │ ├── glDrawArraysIndirect.nativeReg │ │ ├── glDrawElementsIndirect.cpp │ │ ├── glDrawElementsIndirect.java │ │ ├── glDrawElementsIndirect.nativeReg │ │ ├── glDrawElementsInstanced.cpp │ │ ├── glDrawElementsInstanced.java │ │ ├── glDrawElementsInstanced.nativeReg │ │ ├── glDrawElementsInstancedBaseVertex.cpp │ │ ├── glDrawElementsInstancedBaseVertex.java │ │ ├── glDrawElementsInstancedBaseVertex.nativeReg │ │ ├── glGetActiveAttrib.cpp │ │ ├── glGetActiveAttrib.java │ │ ├── glGetActiveAttrib.nativeReg │ │ ├── glGetActiveUniform.cpp │ │ ├── glGetActiveUniform.java │ │ ├── glGetActiveUniform.nativeReg │ │ ├── glGetActiveUniformBlockName.cpp │ │ ├── glGetActiveUniformBlockName.java │ │ ├── glGetActiveUniformBlockName.nativeReg │ │ ├── glGetBooleanv.cpp │ │ ├── glGetBooleanv.java │ │ ├── glGetBooleanv.nativeReg │ │ ├── glGetBufferPointerv.cpp │ │ ├── glGetBufferPointerv.java │ │ ├── glGetBufferPointerv.nativeReg │ │ ├── glGetDebugMessageLog.cpp │ │ ├── glGetDebugMessageLog.java │ │ ├── glGetDebugMessageLog.nativeReg │ │ ├── glGetDebugMessageLogKHR.cpp │ │ ├── glGetDebugMessageLogKHR.java │ │ ├── glGetDebugMessageLogKHR.nativeReg │ │ ├── glGetFloatv.cpp │ │ ├── glGetFloatv.java │ │ ├── glGetFloatv.nativeReg │ │ ├── glGetIntegerv.cpp │ │ ├── glGetIntegerv.java │ │ ├── glGetIntegerv.nativeReg │ │ ├── glGetObjectLabel.cpp │ │ ├── glGetObjectLabel.java │ │ ├── glGetObjectLabel.nativeReg │ │ ├── glGetObjectLabelKHR.cpp │ │ ├── glGetObjectLabelKHR.java │ │ ├── glGetObjectLabelKHR.nativeReg │ │ ├── glGetObjectPtrLabel.cpp │ │ ├── glGetObjectPtrLabel.java │ │ ├── glGetObjectPtrLabel.nativeReg │ │ ├── glGetObjectPtrLabelKHR.cpp │ │ ├── glGetObjectPtrLabelKHR.java │ │ ├── glGetObjectPtrLabelKHR.nativeReg │ │ ├── glGetPointerv.cpp │ │ ├── glGetPointerv.java │ │ ├── glGetPointerv.nativeReg │ │ ├── glGetPointervKHR.cpp │ │ ├── glGetPointervKHR.java │ │ ├── glGetPointervKHR.nativeReg │ │ ├── glGetProgramInfoLog.cpp │ │ ├── glGetProgramInfoLog.java │ │ ├── glGetProgramInfoLog.nativeReg │ │ ├── glGetProgramPipelineInfoLog.cpp │ │ ├── glGetProgramPipelineInfoLog.java │ │ ├── glGetProgramPipelineInfoLog.nativeReg │ │ ├── glGetProgramResourceName.cpp │ │ ├── glGetProgramResourceName.java │ │ ├── glGetProgramResourceName.nativeReg │ │ ├── glGetShaderInfoLog.cpp │ │ ├── glGetShaderInfoLog.java │ │ ├── glGetShaderInfoLog.nativeReg │ │ ├── glGetShaderSource.cpp │ │ ├── glGetShaderSource.java │ │ ├── glGetShaderSource.nativeReg │ │ ├── glGetString.cpp │ │ ├── glGetString.java │ │ ├── glGetString.nativeReg │ │ ├── glGetStringi.cpp │ │ ├── glGetStringi.java │ │ ├── glGetStringi.nativeReg │ │ ├── glGetTransformFeedbackVarying.cpp │ │ ├── glGetTransformFeedbackVarying.java │ │ ├── glGetTransformFeedbackVarying.nativeReg │ │ ├── glGetUniformIndices.cpp │ │ ├── glGetUniformIndices.java │ │ ├── glGetUniformIndices.nativeReg │ │ ├── glMapBufferRange.cpp │ │ ├── glMapBufferRange.java │ │ ├── glMapBufferRange.nativeReg │ │ ├── glObjectPtrLabel.cpp │ │ ├── glObjectPtrLabel.java │ │ ├── glObjectPtrLabel.nativeReg │ │ ├── glObjectPtrLabelKHR.cpp │ │ ├── glObjectPtrLabelKHR.java │ │ ├── glObjectPtrLabelKHR.nativeReg │ │ ├── glShaderSource.cpp │ │ ├── glShaderSource.java │ │ ├── glShaderSource.nativeReg │ │ ├── glTransformFeedbackVaryings.cpp │ │ ├── glTransformFeedbackVaryings.java │ │ └── glTransformFeedbackVaryings.nativeReg │ │ └── jsr239 │ │ ├── GL10ExtHeader.java-if │ │ ├── GL10Header.java-if │ │ ├── GL11ExtHeader.java-if │ │ ├── GL11ExtensionPackHeader.java-if │ │ ├── GL11Header.java-if │ │ ├── GL11ImplHeader.java-impl │ │ ├── GLCHeader.cpp │ │ ├── GLHeader.java-if │ │ ├── GLImplHeader.java-impl │ │ ├── glGetString.cpp │ │ ├── glGetString.java-10-if │ │ ├── glGetString.java-if │ │ ├── glGetString.java-impl │ │ └── glGetString.nativeReg │ └── glgen2 │ ├── .gitignore │ ├── glgen.py │ └── registry │ ├── egl.xml │ ├── genheaders.py │ ├── gl.xml │ └── reg.py ├── services ├── batteryservice │ ├── Android.mk │ ├── BatteryProperties.cpp │ ├── BatteryProperty.cpp │ ├── IBatteryPropertiesListener.cpp │ └── IBatteryPropertiesRegistrar.cpp ├── inputflinger │ ├── Android.mk │ ├── EventHub.cpp │ ├── EventHub.h │ ├── InputApplication.cpp │ ├── InputApplication.h │ ├── InputDispatcher.cpp │ ├── InputDispatcher.h │ ├── InputListener.cpp │ ├── InputListener.h │ ├── InputManager.cpp │ ├── InputManager.h │ ├── InputReader.cpp │ ├── InputReader.h │ ├── InputWindow.cpp │ ├── InputWindow.h │ ├── PointerControllerInterface.h │ ├── host │ │ ├── Android.mk │ │ ├── InputDriver.cpp │ │ ├── InputDriver.h │ │ ├── InputFlinger.cpp │ │ ├── InputFlinger.h │ │ ├── InputHost.cpp │ │ ├── InputHost.h │ │ ├── inputflinger.rc │ │ └── main.cpp │ └── tests │ │ ├── Android.mk │ │ ├── InputDispatcher_test.cpp │ │ └── InputReader_test.cpp ├── powermanager │ ├── Android.mk │ └── IPowerManager.cpp ├── sensorservice │ ├── Android.mk │ ├── BatteryService.cpp │ ├── BatteryService.h │ ├── CorrectedGyroSensor.cpp │ ├── CorrectedGyroSensor.h │ ├── Fusion.cpp │ ├── Fusion.h │ ├── GravitySensor.cpp │ ├── GravitySensor.h │ ├── LinearAccelerationSensor.cpp │ ├── LinearAccelerationSensor.h │ ├── OrientationSensor.cpp │ ├── OrientationSensor.h │ ├── RecentEventLogger.cpp │ ├── RecentEventLogger.h │ ├── RingBuffer.h │ ├── RotationVectorSensor.cpp │ ├── RotationVectorSensor.h │ ├── SensorDevice.cpp │ ├── SensorDevice.h │ ├── SensorEventAckReceiver.h │ ├── SensorEventConnection.cpp │ ├── SensorEventConnection.h │ ├── SensorFusion.cpp │ ├── SensorFusion.h │ ├── SensorInterface.cpp │ ├── SensorInterface.h │ ├── SensorList.cpp │ ├── SensorList.h │ ├── SensorRecord.cpp │ ├── SensorRecord.h │ ├── SensorRegistrationInfo.h │ ├── SensorService.cpp │ ├── SensorService.h │ ├── SensorServiceUtils.cpp │ ├── SensorServiceUtils.h │ ├── main_sensorservice.cpp │ ├── mat.h │ ├── quat.h │ ├── tests │ │ ├── Android.mk │ │ └── sensorservicetest.cpp │ ├── traits.h │ └── vec.h └── surfaceflinger │ ├── Android.mk │ ├── Barrier.h │ ├── Client.cpp │ ├── Client.h │ ├── Colorizer.h │ ├── DdmConnection.cpp │ ├── DdmConnection.h │ ├── DispSync.cpp │ ├── DispSync.h │ ├── DisplayDevice.cpp │ ├── DisplayDevice.h │ ├── DisplayHardware │ ├── DisplaySurface.h │ ├── FloatRect.h │ ├── FramebufferSurface.cpp │ ├── FramebufferSurface.h │ ├── HWC2.cpp │ ├── HWC2.h │ ├── HWC2On1Adapter.cpp │ ├── HWC2On1Adapter.h │ ├── HWComposer.cpp │ ├── HWComposer.h │ ├── HWComposer_hwc1.cpp │ ├── HWComposer_hwc1.h │ ├── PowerHAL.cpp │ ├── PowerHAL.h │ ├── VirtualDisplaySurface.cpp │ └── VirtualDisplaySurface.h │ ├── DisplayUtils.cpp │ ├── DisplayUtils.h │ ├── Effects │ ├── Daltonizer.cpp │ └── Daltonizer.h │ ├── EventControlThread.cpp │ ├── EventControlThread.h │ ├── EventLog │ ├── EventLog.cpp │ ├── EventLog.h │ └── EventLogTags.logtags │ ├── EventThread.cpp │ ├── EventThread.h │ ├── ExSurfaceFlinger │ ├── ExHWComposer.cpp │ ├── ExHWComposer.h │ ├── ExLayer.cpp │ ├── ExLayer.h │ ├── ExSurfaceFlinger.cpp │ ├── ExSurfaceFlinger.h │ ├── ExVirtualDisplaySurface.cpp │ └── ExVirtualDisplaySurface.h │ ├── FenceTracker.cpp │ ├── FenceTracker.h │ ├── FrameRateHelper.h │ ├── FrameTracker.cpp │ ├── FrameTracker.h │ ├── GpuService.cpp │ ├── GpuService.h │ ├── Layer.cpp │ ├── Layer.h │ ├── LayerBlur.cpp │ ├── LayerBlur.h │ ├── LayerDim.cpp │ ├── LayerDim.h │ ├── MODULE_LICENSE_APACHE2 │ ├── MessageQueue.cpp │ ├── MessageQueue.h │ ├── MonitoredProducer.cpp │ ├── MonitoredProducer.h │ ├── RenderEngine │ ├── Description.cpp │ ├── Description.h │ ├── GLES10RenderEngine.cpp │ ├── GLES10RenderEngine.h │ ├── GLES11RenderEngine.cpp │ ├── GLES11RenderEngine.h │ ├── GLES20RenderEngine.cpp │ ├── GLES20RenderEngine.h │ ├── GLExtensions.cpp │ ├── GLExtensions.h │ ├── Mesh.cpp │ ├── Mesh.h │ ├── Program.cpp │ ├── Program.h │ ├── ProgramCache.cpp │ ├── ProgramCache.h │ ├── RenderEngine.cpp │ ├── RenderEngine.h │ ├── Texture.cpp │ └── Texture.h │ ├── SurfaceFlinger.cpp │ ├── SurfaceFlinger.h │ ├── SurfaceFlingerConsumer.cpp │ ├── SurfaceFlingerConsumer.h │ ├── SurfaceFlinger_hwc1.cpp │ ├── Transform.cpp │ ├── Transform.h │ ├── clz.h │ ├── main_surfaceflinger.cpp │ ├── surfaceflinger.rc │ └── tests │ ├── Android.mk │ ├── Transaction_test.cpp │ ├── vsync │ ├── Android.mk │ └── vsync.cpp │ └── waitforvsync │ ├── Android.mk │ └── waitforvsync.cpp └── vulkan ├── .clang-format ├── Android.mk ├── README.md ├── api ├── platform.api ├── templates │ ├── asciidoc.tmpl │ ├── vk_xml.tmpl │ ├── vulkan_common.tmpl │ └── vulkan_h.tmpl └── vulkan.api ├── doc └── implementors_guide │ ├── implementors_guide-docinfo.adoc │ ├── implementors_guide.adoc │ ├── implementors_guide.conf │ └── implementors_guide.html ├── include ├── hardware │ └── hwvulkan.h └── vulkan │ ├── vk_android_native_buffer.h │ ├── vk_layer_interface.h │ ├── vk_platform.h │ ├── vulkan.h │ └── vulkan_loader_data.h ├── libvulkan ├── Android.mk ├── api.cpp ├── api.h ├── api_gen.cpp ├── api_gen.h ├── code-generator.tmpl ├── debug_report.cpp ├── debug_report.h ├── driver.cpp ├── driver.h ├── driver_gen.cpp ├── driver_gen.h ├── layers_extensions.cpp ├── layers_extensions.h ├── stubhal.cpp ├── stubhal.h ├── swapchain.cpp ├── swapchain.h └── vulkan_loader_data.cpp ├── nulldrv ├── Android.mk ├── null_driver.cpp ├── null_driver.tmpl ├── null_driver_gen.cpp └── null_driver_gen.h └── tools ├── Android.mk └── vkinfo.cpp /MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/NOTICE -------------------------------------------------------------------------------- /aidl/binder/android/os/PersistableBundle.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/aidl/binder/android/os/PersistableBundle.aidl -------------------------------------------------------------------------------- /aidl/gui/android/view/Surface.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/aidl/gui/android/view/Surface.aidl -------------------------------------------------------------------------------- /cmds/atrace/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/atrace/Android.mk -------------------------------------------------------------------------------- /cmds/atrace/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmds/atrace/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/atrace/NOTICE -------------------------------------------------------------------------------- /cmds/atrace/atrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/atrace/atrace.cpp -------------------------------------------------------------------------------- /cmds/atrace/atrace.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/atrace/atrace.rc -------------------------------------------------------------------------------- /cmds/bugreport/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/bugreport/Android.mk -------------------------------------------------------------------------------- /cmds/bugreport/bugreport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/bugreport/bugreport.cpp -------------------------------------------------------------------------------- /cmds/bugreportz/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/bugreportz/.clang-format -------------------------------------------------------------------------------- /cmds/bugreportz/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/bugreportz/Android.mk -------------------------------------------------------------------------------- /cmds/bugreportz/bugreportz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/bugreportz/bugreportz.cpp -------------------------------------------------------------------------------- /cmds/bugreportz/bugreportz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/bugreportz/bugreportz.h -------------------------------------------------------------------------------- /cmds/bugreportz/bugreportz_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/bugreportz/bugreportz_test.cpp -------------------------------------------------------------------------------- /cmds/bugreportz/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/bugreportz/main.cpp -------------------------------------------------------------------------------- /cmds/bugreportz/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/bugreportz/readme.md -------------------------------------------------------------------------------- /cmds/cmd/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/cmd/Android.mk -------------------------------------------------------------------------------- /cmds/cmd/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmds/cmd/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/cmd/NOTICE -------------------------------------------------------------------------------- /cmds/cmd/cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/cmd/cmd.cpp -------------------------------------------------------------------------------- /cmds/dumpstate/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/dumpstate/Android.mk -------------------------------------------------------------------------------- /cmds/dumpstate/bugreport-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/dumpstate/bugreport-format.md -------------------------------------------------------------------------------- /cmds/dumpstate/dumpstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/dumpstate/dumpstate.cpp -------------------------------------------------------------------------------- /cmds/dumpstate/dumpstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/dumpstate/dumpstate.h -------------------------------------------------------------------------------- /cmds/dumpstate/dumpstate.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/dumpstate/dumpstate.rc -------------------------------------------------------------------------------- /cmds/dumpstate/libdumpstate_default.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/dumpstate/libdumpstate_default.cpp -------------------------------------------------------------------------------- /cmds/dumpstate/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/dumpstate/utils.cpp -------------------------------------------------------------------------------- /cmds/dumpsys/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/dumpsys/Android.mk -------------------------------------------------------------------------------- /cmds/dumpsys/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmds/dumpsys/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/dumpsys/NOTICE -------------------------------------------------------------------------------- /cmds/dumpsys/dumpsys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/dumpsys/dumpsys.cpp -------------------------------------------------------------------------------- /cmds/flatland/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/flatland/Android.mk -------------------------------------------------------------------------------- /cmds/flatland/Composers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/flatland/Composers.cpp -------------------------------------------------------------------------------- /cmds/flatland/Flatland.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/flatland/Flatland.h -------------------------------------------------------------------------------- /cmds/flatland/GLHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/flatland/GLHelper.cpp -------------------------------------------------------------------------------- /cmds/flatland/GLHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/flatland/GLHelper.h -------------------------------------------------------------------------------- /cmds/flatland/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/flatland/Main.cpp -------------------------------------------------------------------------------- /cmds/flatland/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/flatland/README.txt -------------------------------------------------------------------------------- /cmds/flatland/Renderers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/flatland/Renderers.cpp -------------------------------------------------------------------------------- /cmds/installd/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/Android.mk -------------------------------------------------------------------------------- /cmds/installd/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/commands.cpp -------------------------------------------------------------------------------- /cmds/installd/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/commands.h -------------------------------------------------------------------------------- /cmds/installd/file_parsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/file_parsing.h -------------------------------------------------------------------------------- /cmds/installd/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/globals.cpp -------------------------------------------------------------------------------- /cmds/installd/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/globals.h -------------------------------------------------------------------------------- /cmds/installd/installd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/installd.cpp -------------------------------------------------------------------------------- /cmds/installd/installd.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/installd.rc -------------------------------------------------------------------------------- /cmds/installd/installd_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/installd_constants.h -------------------------------------------------------------------------------- /cmds/installd/installd_deps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/installd_deps.h -------------------------------------------------------------------------------- /cmds/installd/otapreopt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/otapreopt.cpp -------------------------------------------------------------------------------- /cmds/installd/otapreopt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/otapreopt.rc -------------------------------------------------------------------------------- /cmds/installd/otapreopt_chroot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/otapreopt_chroot.cpp -------------------------------------------------------------------------------- /cmds/installd/otapreopt_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/otapreopt_script.sh -------------------------------------------------------------------------------- /cmds/installd/otapreopt_slot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/otapreopt_slot.sh -------------------------------------------------------------------------------- /cmds/installd/otapreopt_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/otapreopt_utils.h -------------------------------------------------------------------------------- /cmds/installd/system_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/system_properties.h -------------------------------------------------------------------------------- /cmds/installd/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/tests/Android.mk -------------------------------------------------------------------------------- /cmds/installd/tests/installd_utils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/tests/installd_utils_test.cpp -------------------------------------------------------------------------------- /cmds/installd/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/utils.cpp -------------------------------------------------------------------------------- /cmds/installd/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/installd/utils.h -------------------------------------------------------------------------------- /cmds/ip-up-vpn/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/ip-up-vpn/Android.mk -------------------------------------------------------------------------------- /cmds/ip-up-vpn/ip-up-vpn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/ip-up-vpn/ip-up-vpn.c -------------------------------------------------------------------------------- /cmds/rawbu/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/rawbu/Android.mk -------------------------------------------------------------------------------- /cmds/rawbu/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/rawbu/NOTICE -------------------------------------------------------------------------------- /cmds/rawbu/backup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/rawbu/backup.cpp -------------------------------------------------------------------------------- /cmds/service/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/service/Android.mk -------------------------------------------------------------------------------- /cmds/service/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmds/service/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/service/NOTICE -------------------------------------------------------------------------------- /cmds/service/service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/service/service.cpp -------------------------------------------------------------------------------- /cmds/servicemanager/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/servicemanager/Android.mk -------------------------------------------------------------------------------- /cmds/servicemanager/bctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/servicemanager/bctest.c -------------------------------------------------------------------------------- /cmds/servicemanager/binder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/servicemanager/binder.c -------------------------------------------------------------------------------- /cmds/servicemanager/binder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/servicemanager/binder.h -------------------------------------------------------------------------------- /cmds/servicemanager/service_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/servicemanager/service_manager.c -------------------------------------------------------------------------------- /cmds/servicemanager/servicemanager.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/cmds/servicemanager/servicemanager.rc -------------------------------------------------------------------------------- /data/etc/android.hardware.audio.low_latency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.audio.low_latency.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.audio.output.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.audio.output.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.audio.pro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.audio.pro.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.bluetooth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.bluetooth.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.bluetooth_le.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.bluetooth_le.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.camera.autofocus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.camera.autofocus.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.camera.external.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.camera.external.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.camera.front.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.camera.front.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.camera.full.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.camera.full.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.camera.raw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.camera.raw.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.camera.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.consumerir.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.consumerir.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.ethernet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.ethernet.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.faketouch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.faketouch.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.fingerprint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.fingerprint.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.gamepad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.gamepad.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.hdmi.cec.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.hdmi.cec.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.location.gps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.location.gps.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.location.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.nfc.hce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.nfc.hce.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.nfc.hcef.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.nfc.hcef.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.nfc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.nfc.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.opengles.aep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.opengles.aep.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.screen.landscape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.screen.landscape.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.screen.portrait.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.screen.portrait.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.sensor.barometer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.sensor.barometer.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.sensor.compass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.sensor.compass.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.sensor.gyroscope.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.sensor.gyroscope.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.sensor.heartrate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.sensor.heartrate.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.sensor.light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.sensor.light.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.sensor.proximity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.sensor.proximity.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.telephony.cdma.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.telephony.cdma.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.telephony.gsm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.telephony.gsm.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.touchscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.touchscreen.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.type.automotive.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.type.automotive.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.usb.accessory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.usb.accessory.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.usb.host.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.usb.host.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.vulkan.level-0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.vulkan.level-0.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.vulkan.level-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.vulkan.level-1.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.wifi.direct.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.wifi.direct.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.wifi.nan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.wifi.nan.xml -------------------------------------------------------------------------------- /data/etc/android.hardware.wifi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.hardware.wifi.xml -------------------------------------------------------------------------------- /data/etc/android.software.app_widgets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.software.app_widgets.xml -------------------------------------------------------------------------------- /data/etc/android.software.backup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.software.backup.xml -------------------------------------------------------------------------------- /data/etc/android.software.connectionservice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.software.connectionservice.xml -------------------------------------------------------------------------------- /data/etc/android.software.device_admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.software.device_admin.xml -------------------------------------------------------------------------------- /data/etc/android.software.live_tv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.software.live_tv.xml -------------------------------------------------------------------------------- /data/etc/android.software.managed_users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.software.managed_users.xml -------------------------------------------------------------------------------- /data/etc/android.software.midi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.software.midi.xml -------------------------------------------------------------------------------- /data/etc/android.software.print.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.software.print.xml -------------------------------------------------------------------------------- /data/etc/android.software.sip.voip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.software.sip.voip.xml -------------------------------------------------------------------------------- /data/etc/android.software.sip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.software.sip.xml -------------------------------------------------------------------------------- /data/etc/android.software.verified_boot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.software.verified_boot.xml -------------------------------------------------------------------------------- /data/etc/android.software.voice_recognizers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.software.voice_recognizers.xml -------------------------------------------------------------------------------- /data/etc/android.software.vr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.software.vr.xml -------------------------------------------------------------------------------- /data/etc/android.software.webview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/android.software.webview.xml -------------------------------------------------------------------------------- /data/etc/car_core_hardware.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/car_core_hardware.xml -------------------------------------------------------------------------------- /data/etc/com.android.nfc_extras.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/com.android.nfc_extras.xml -------------------------------------------------------------------------------- /data/etc/com.nxp.mifare.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/com.nxp.mifare.xml -------------------------------------------------------------------------------- /data/etc/handheld_core_hardware.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/handheld_core_hardware.xml -------------------------------------------------------------------------------- /data/etc/tablet_core_hardware.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/tablet_core_hardware.xml -------------------------------------------------------------------------------- /data/etc/wearable_core_hardware.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/data/etc/wearable_core_hardware.xml -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/docs/header.html -------------------------------------------------------------------------------- /include/android/asset_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/asset_manager.h -------------------------------------------------------------------------------- /include/android/asset_manager_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/asset_manager_jni.h -------------------------------------------------------------------------------- /include/android/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/bitmap.h -------------------------------------------------------------------------------- /include/android/choreographer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/choreographer.h -------------------------------------------------------------------------------- /include/android/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/configuration.h -------------------------------------------------------------------------------- /include/android/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/input.h -------------------------------------------------------------------------------- /include/android/keycodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/keycodes.h -------------------------------------------------------------------------------- /include/android/looper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/looper.h -------------------------------------------------------------------------------- /include/android/multinetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/multinetwork.h -------------------------------------------------------------------------------- /include/android/native_activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/native_activity.h -------------------------------------------------------------------------------- /include/android/native_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/native_window.h -------------------------------------------------------------------------------- /include/android/native_window_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/native_window_jni.h -------------------------------------------------------------------------------- /include/android/obb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/obb.h -------------------------------------------------------------------------------- /include/android/rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/rect.h -------------------------------------------------------------------------------- /include/android/sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/sensor.h -------------------------------------------------------------------------------- /include/android/storage_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/storage_manager.h -------------------------------------------------------------------------------- /include/android/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/trace.h -------------------------------------------------------------------------------- /include/android/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/android/window.h -------------------------------------------------------------------------------- /include/batteryservice/BatteryService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/batteryservice/BatteryService.h -------------------------------------------------------------------------------- /include/binder/AppOpsManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/AppOpsManager.h -------------------------------------------------------------------------------- /include/binder/Binder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/Binder.h -------------------------------------------------------------------------------- /include/binder/BinderService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/BinderService.h -------------------------------------------------------------------------------- /include/binder/BpBinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/BpBinder.h -------------------------------------------------------------------------------- /include/binder/BufferedTextOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/BufferedTextOutput.h -------------------------------------------------------------------------------- /include/binder/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/Debug.h -------------------------------------------------------------------------------- /include/binder/IAppOpsCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/IAppOpsCallback.h -------------------------------------------------------------------------------- /include/binder/IAppOpsService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/IAppOpsService.h -------------------------------------------------------------------------------- /include/binder/IBatteryStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/IBatteryStats.h -------------------------------------------------------------------------------- /include/binder/IBinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/IBinder.h -------------------------------------------------------------------------------- /include/binder/IInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/IInterface.h -------------------------------------------------------------------------------- /include/binder/IMediaResourceMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/IMediaResourceMonitor.h -------------------------------------------------------------------------------- /include/binder/IMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/IMemory.h -------------------------------------------------------------------------------- /include/binder/IPCThreadState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/IPCThreadState.h -------------------------------------------------------------------------------- /include/binder/IPermissionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/IPermissionController.h -------------------------------------------------------------------------------- /include/binder/IProcessInfoService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/IProcessInfoService.h -------------------------------------------------------------------------------- /include/binder/IResultReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/IResultReceiver.h -------------------------------------------------------------------------------- /include/binder/IServiceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/IServiceManager.h -------------------------------------------------------------------------------- /include/binder/MemoryBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/MemoryBase.h -------------------------------------------------------------------------------- /include/binder/MemoryDealer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/MemoryDealer.h -------------------------------------------------------------------------------- /include/binder/MemoryHeapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/MemoryHeapBase.h -------------------------------------------------------------------------------- /include/binder/MemoryHeapIon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/MemoryHeapIon.h -------------------------------------------------------------------------------- /include/binder/Parcel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/Parcel.h -------------------------------------------------------------------------------- /include/binder/Parcelable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/Parcelable.h -------------------------------------------------------------------------------- /include/binder/PermissionCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/PermissionCache.h -------------------------------------------------------------------------------- /include/binder/PersistableBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/PersistableBundle.h -------------------------------------------------------------------------------- /include/binder/ProcessInfoService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/ProcessInfoService.h -------------------------------------------------------------------------------- /include/binder/ProcessState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/ProcessState.h -------------------------------------------------------------------------------- /include/binder/Status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/Status.h -------------------------------------------------------------------------------- /include/binder/TextOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/binder/TextOutput.h -------------------------------------------------------------------------------- /include/diskusage/dirsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/diskusage/dirsize.h -------------------------------------------------------------------------------- /include/gui/BitTube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/BitTube.h -------------------------------------------------------------------------------- /include/gui/BufferItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/BufferItem.h -------------------------------------------------------------------------------- /include/gui/BufferItemConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/BufferItemConsumer.h -------------------------------------------------------------------------------- /include/gui/BufferQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/BufferQueue.h -------------------------------------------------------------------------------- /include/gui/BufferQueueConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/BufferQueueConsumer.h -------------------------------------------------------------------------------- /include/gui/BufferQueueCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/BufferQueueCore.h -------------------------------------------------------------------------------- /include/gui/BufferQueueDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/BufferQueueDefs.h -------------------------------------------------------------------------------- /include/gui/BufferQueueProducer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/BufferQueueProducer.h -------------------------------------------------------------------------------- /include/gui/BufferSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/BufferSlot.h -------------------------------------------------------------------------------- /include/gui/ConsumerBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/ConsumerBase.h -------------------------------------------------------------------------------- /include/gui/CpuConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/CpuConsumer.h -------------------------------------------------------------------------------- /include/gui/DisplayEventReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/DisplayEventReceiver.h -------------------------------------------------------------------------------- /include/gui/FrameTimestamps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/FrameTimestamps.h -------------------------------------------------------------------------------- /include/gui/GLConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/GLConsumer.h -------------------------------------------------------------------------------- /include/gui/GraphicBufferAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/GraphicBufferAlloc.h -------------------------------------------------------------------------------- /include/gui/GuiConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/GuiConfig.h -------------------------------------------------------------------------------- /include/gui/IConsumerListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/IConsumerListener.h -------------------------------------------------------------------------------- /include/gui/IDisplayEventConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/IDisplayEventConnection.h -------------------------------------------------------------------------------- /include/gui/IGraphicBufferAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/IGraphicBufferAlloc.h -------------------------------------------------------------------------------- /include/gui/IGraphicBufferConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/IGraphicBufferConsumer.h -------------------------------------------------------------------------------- /include/gui/IGraphicBufferProducer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/IGraphicBufferProducer.h -------------------------------------------------------------------------------- /include/gui/IProducerListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/IProducerListener.h -------------------------------------------------------------------------------- /include/gui/ISensorEventConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/ISensorEventConnection.h -------------------------------------------------------------------------------- /include/gui/ISensorServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/ISensorServer.h -------------------------------------------------------------------------------- /include/gui/ISurfaceComposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/ISurfaceComposer.h -------------------------------------------------------------------------------- /include/gui/ISurfaceComposerClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/ISurfaceComposerClient.h -------------------------------------------------------------------------------- /include/gui/OccupancyTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/OccupancyTracker.h -------------------------------------------------------------------------------- /include/gui/Sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/Sensor.h -------------------------------------------------------------------------------- /include/gui/SensorEventQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/SensorEventQueue.h -------------------------------------------------------------------------------- /include/gui/SensorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/SensorManager.h -------------------------------------------------------------------------------- /include/gui/StreamSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/StreamSplitter.h -------------------------------------------------------------------------------- /include/gui/Surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/Surface.h -------------------------------------------------------------------------------- /include/gui/SurfaceComposerClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/SurfaceComposerClient.h -------------------------------------------------------------------------------- /include/gui/SurfaceControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/gui/SurfaceControl.h -------------------------------------------------------------------------------- /include/input/IInputFlinger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/input/IInputFlinger.h -------------------------------------------------------------------------------- /include/input/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/input/Input.h -------------------------------------------------------------------------------- /include/input/InputDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/input/InputDevice.h -------------------------------------------------------------------------------- /include/input/InputEventLabels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/input/InputEventLabels.h -------------------------------------------------------------------------------- /include/input/InputTransport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/input/InputTransport.h -------------------------------------------------------------------------------- /include/input/KeyCharacterMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/input/KeyCharacterMap.h -------------------------------------------------------------------------------- /include/input/KeyLayoutMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/input/KeyLayoutMap.h -------------------------------------------------------------------------------- /include/input/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/input/Keyboard.h -------------------------------------------------------------------------------- /include/input/VelocityControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/input/VelocityControl.h -------------------------------------------------------------------------------- /include/input/VelocityTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/input/VelocityTracker.h -------------------------------------------------------------------------------- /include/input/VirtualKeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/input/VirtualKeyMap.h -------------------------------------------------------------------------------- /include/media/drm/DrmAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/drm/DrmAPI.h -------------------------------------------------------------------------------- /include/media/editor/II420ColorConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/editor/II420ColorConverter.h -------------------------------------------------------------------------------- /include/media/hardware/CryptoAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/hardware/CryptoAPI.h -------------------------------------------------------------------------------- /include/media/hardware/HDCPAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/hardware/HDCPAPI.h -------------------------------------------------------------------------------- /include/media/hardware/HardwareAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/hardware/HardwareAPI.h -------------------------------------------------------------------------------- /include/media/hardware/MetadataBufferType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/hardware/MetadataBufferType.h -------------------------------------------------------------------------------- /include/media/hardware/OMXPluginBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/hardware/OMXPluginBase.h -------------------------------------------------------------------------------- /include/media/hardware/VideoAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/hardware/VideoAPI.h -------------------------------------------------------------------------------- /include/media/openmax/OMX_AsString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/openmax/OMX_AsString.h -------------------------------------------------------------------------------- /include/media/openmax/OMX_Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/openmax/OMX_Audio.h -------------------------------------------------------------------------------- /include/media/openmax/OMX_AudioExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/openmax/OMX_AudioExt.h -------------------------------------------------------------------------------- /include/media/openmax/OMX_Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/openmax/OMX_Component.h -------------------------------------------------------------------------------- /include/media/openmax/OMX_ContentPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/openmax/OMX_ContentPipe.h -------------------------------------------------------------------------------- /include/media/openmax/OMX_Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/openmax/OMX_Core.h -------------------------------------------------------------------------------- /include/media/openmax/OMX_IVCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/openmax/OMX_IVCommon.h -------------------------------------------------------------------------------- /include/media/openmax/OMX_Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/openmax/OMX_Image.h -------------------------------------------------------------------------------- /include/media/openmax/OMX_Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/openmax/OMX_Index.h -------------------------------------------------------------------------------- /include/media/openmax/OMX_IndexExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/openmax/OMX_IndexExt.h -------------------------------------------------------------------------------- /include/media/openmax/OMX_Other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/openmax/OMX_Other.h -------------------------------------------------------------------------------- /include/media/openmax/OMX_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/openmax/OMX_Types.h -------------------------------------------------------------------------------- /include/media/openmax/OMX_Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/openmax/OMX_Video.h -------------------------------------------------------------------------------- /include/media/openmax/OMX_VideoExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/media/openmax/OMX_VideoExt.h -------------------------------------------------------------------------------- /include/powermanager/IPowerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/powermanager/IPowerManager.h -------------------------------------------------------------------------------- /include/powermanager/PowerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/powermanager/PowerManager.h -------------------------------------------------------------------------------- /include/private/binder/Static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/private/binder/Static.h -------------------------------------------------------------------------------- /include/private/binder/binder_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/private/binder/binder_module.h -------------------------------------------------------------------------------- /include/private/gui/ComposerService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/private/gui/ComposerService.h -------------------------------------------------------------------------------- /include/private/gui/LayerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/private/gui/LayerState.h -------------------------------------------------------------------------------- /include/private/gui/SyncFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/private/gui/SyncFeatures.h -------------------------------------------------------------------------------- /include/private/ui/RegionHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/private/ui/RegionHelper.h -------------------------------------------------------------------------------- /include/ui/ANativeObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/ANativeObjectBase.h -------------------------------------------------------------------------------- /include/ui/DisplayInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/DisplayInfo.h -------------------------------------------------------------------------------- /include/ui/DisplayStatInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/DisplayStatInfo.h -------------------------------------------------------------------------------- /include/ui/Fence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/Fence.h -------------------------------------------------------------------------------- /include/ui/FrameStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/FrameStats.h -------------------------------------------------------------------------------- /include/ui/Gralloc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/Gralloc1.h -------------------------------------------------------------------------------- /include/ui/Gralloc1On0Adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/Gralloc1On0Adapter.h -------------------------------------------------------------------------------- /include/ui/GraphicBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/GraphicBuffer.h -------------------------------------------------------------------------------- /include/ui/GraphicBufferAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/GraphicBufferAllocator.h -------------------------------------------------------------------------------- /include/ui/GraphicBufferMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/GraphicBufferMapper.h -------------------------------------------------------------------------------- /include/ui/HdrCapabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/HdrCapabilities.h -------------------------------------------------------------------------------- /include/ui/PixelFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/PixelFormat.h -------------------------------------------------------------------------------- /include/ui/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/Point.h -------------------------------------------------------------------------------- /include/ui/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/Rect.h -------------------------------------------------------------------------------- /include/ui/Region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/Region.h -------------------------------------------------------------------------------- /include/ui/TMatHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/TMatHelpers.h -------------------------------------------------------------------------------- /include/ui/TVecHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/TVecHelpers.h -------------------------------------------------------------------------------- /include/ui/UiConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/UiConfig.h -------------------------------------------------------------------------------- /include/ui/mat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/mat4.h -------------------------------------------------------------------------------- /include/ui/vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/vec2.h -------------------------------------------------------------------------------- /include/ui/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/vec3.h -------------------------------------------------------------------------------- /include/ui/vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/include/ui/vec4.h -------------------------------------------------------------------------------- /libs/binder/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/Android.mk -------------------------------------------------------------------------------- /libs/binder/AppOpsManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/AppOpsManager.cpp -------------------------------------------------------------------------------- /libs/binder/Binder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/Binder.cpp -------------------------------------------------------------------------------- /libs/binder/BpBinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/BpBinder.cpp -------------------------------------------------------------------------------- /libs/binder/BufferedTextOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/BufferedTextOutput.cpp -------------------------------------------------------------------------------- /libs/binder/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/Debug.cpp -------------------------------------------------------------------------------- /libs/binder/IAppOpsCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/IAppOpsCallback.cpp -------------------------------------------------------------------------------- /libs/binder/IAppOpsService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/IAppOpsService.cpp -------------------------------------------------------------------------------- /libs/binder/IBatteryStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/IBatteryStats.cpp -------------------------------------------------------------------------------- /libs/binder/IInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/IInterface.cpp -------------------------------------------------------------------------------- /libs/binder/IMediaResourceMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/IMediaResourceMonitor.cpp -------------------------------------------------------------------------------- /libs/binder/IMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/IMemory.cpp -------------------------------------------------------------------------------- /libs/binder/IPCThreadState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/IPCThreadState.cpp -------------------------------------------------------------------------------- /libs/binder/IPermissionController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/IPermissionController.cpp -------------------------------------------------------------------------------- /libs/binder/IProcessInfoService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/IProcessInfoService.cpp -------------------------------------------------------------------------------- /libs/binder/IResultReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/IResultReceiver.cpp -------------------------------------------------------------------------------- /libs/binder/IServiceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/IServiceManager.cpp -------------------------------------------------------------------------------- /libs/binder/MemoryBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/MemoryBase.cpp -------------------------------------------------------------------------------- /libs/binder/MemoryDealer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/MemoryDealer.cpp -------------------------------------------------------------------------------- /libs/binder/MemoryHeapBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/MemoryHeapBase.cpp -------------------------------------------------------------------------------- /libs/binder/MemoryHeapIon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/MemoryHeapIon.cpp -------------------------------------------------------------------------------- /libs/binder/Parcel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/Parcel.cpp -------------------------------------------------------------------------------- /libs/binder/PermissionCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/PermissionCache.cpp -------------------------------------------------------------------------------- /libs/binder/PersistableBundle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/PersistableBundle.cpp -------------------------------------------------------------------------------- /libs/binder/ProcessInfoService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/ProcessInfoService.cpp -------------------------------------------------------------------------------- /libs/binder/ProcessState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/ProcessState.cpp -------------------------------------------------------------------------------- /libs/binder/Static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/Static.cpp -------------------------------------------------------------------------------- /libs/binder/Status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/Status.cpp -------------------------------------------------------------------------------- /libs/binder/TextOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/TextOutput.cpp -------------------------------------------------------------------------------- /libs/binder/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/tests/Android.mk -------------------------------------------------------------------------------- /libs/binder/tests/binderDriverInterfaceTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/tests/binderDriverInterfaceTest.cpp -------------------------------------------------------------------------------- /libs/binder/tests/binderLibTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/tests/binderLibTest.cpp -------------------------------------------------------------------------------- /libs/binder/tests/binderThroughputTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/binder/tests/binderThroughputTest.cpp -------------------------------------------------------------------------------- /libs/diskusage/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/diskusage/Android.mk -------------------------------------------------------------------------------- /libs/diskusage/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/diskusage/dirsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/diskusage/dirsize.c -------------------------------------------------------------------------------- /libs/gui/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/Android.mk -------------------------------------------------------------------------------- /libs/gui/BitTube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/BitTube.cpp -------------------------------------------------------------------------------- /libs/gui/BufferItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/BufferItem.cpp -------------------------------------------------------------------------------- /libs/gui/BufferItemConsumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/BufferItemConsumer.cpp -------------------------------------------------------------------------------- /libs/gui/BufferQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/BufferQueue.cpp -------------------------------------------------------------------------------- /libs/gui/BufferQueueConsumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/BufferQueueConsumer.cpp -------------------------------------------------------------------------------- /libs/gui/BufferQueueCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/BufferQueueCore.cpp -------------------------------------------------------------------------------- /libs/gui/BufferQueueProducer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/BufferQueueProducer.cpp -------------------------------------------------------------------------------- /libs/gui/BufferSlot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/BufferSlot.cpp -------------------------------------------------------------------------------- /libs/gui/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/CleanSpec.mk -------------------------------------------------------------------------------- /libs/gui/ConsumerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/ConsumerBase.cpp -------------------------------------------------------------------------------- /libs/gui/CpuConsumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/CpuConsumer.cpp -------------------------------------------------------------------------------- /libs/gui/DisplayEventReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/DisplayEventReceiver.cpp -------------------------------------------------------------------------------- /libs/gui/GLConsumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/GLConsumer.cpp -------------------------------------------------------------------------------- /libs/gui/GraphicBufferAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/GraphicBufferAlloc.cpp -------------------------------------------------------------------------------- /libs/gui/GuiConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/GuiConfig.cpp -------------------------------------------------------------------------------- /libs/gui/IConsumerListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/IConsumerListener.cpp -------------------------------------------------------------------------------- /libs/gui/IDisplayEventConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/IDisplayEventConnection.cpp -------------------------------------------------------------------------------- /libs/gui/IGraphicBufferAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/IGraphicBufferAlloc.cpp -------------------------------------------------------------------------------- /libs/gui/IGraphicBufferConsumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/IGraphicBufferConsumer.cpp -------------------------------------------------------------------------------- /libs/gui/IGraphicBufferProducer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/IGraphicBufferProducer.cpp -------------------------------------------------------------------------------- /libs/gui/IProducerListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/IProducerListener.cpp -------------------------------------------------------------------------------- /libs/gui/ISensorEventConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/ISensorEventConnection.cpp -------------------------------------------------------------------------------- /libs/gui/ISensorServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/ISensorServer.cpp -------------------------------------------------------------------------------- /libs/gui/ISurfaceComposer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/ISurfaceComposer.cpp -------------------------------------------------------------------------------- /libs/gui/ISurfaceComposerClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/ISurfaceComposerClient.cpp -------------------------------------------------------------------------------- /libs/gui/LayerState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/LayerState.cpp -------------------------------------------------------------------------------- /libs/gui/OccupancyTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/OccupancyTracker.cpp -------------------------------------------------------------------------------- /libs/gui/Sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/Sensor.cpp -------------------------------------------------------------------------------- /libs/gui/SensorEventQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/SensorEventQueue.cpp -------------------------------------------------------------------------------- /libs/gui/SensorManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/SensorManager.cpp -------------------------------------------------------------------------------- /libs/gui/StreamSplitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/StreamSplitter.cpp -------------------------------------------------------------------------------- /libs/gui/Surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/Surface.cpp -------------------------------------------------------------------------------- /libs/gui/SurfaceComposerClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/SurfaceComposerClient.cpp -------------------------------------------------------------------------------- /libs/gui/SurfaceControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/SurfaceControl.cpp -------------------------------------------------------------------------------- /libs/gui/SyncFeatures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/SyncFeatures.cpp -------------------------------------------------------------------------------- /libs/gui/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/Android.mk -------------------------------------------------------------------------------- /libs/gui/tests/BufferQueue_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/BufferQueue_test.cpp -------------------------------------------------------------------------------- /libs/gui/tests/CpuConsumer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/CpuConsumer_test.cpp -------------------------------------------------------------------------------- /libs/gui/tests/DisconnectWaiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/DisconnectWaiter.h -------------------------------------------------------------------------------- /libs/gui/tests/DummyConsumer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/DummyConsumer.h -------------------------------------------------------------------------------- /libs/gui/tests/FillBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/FillBuffer.cpp -------------------------------------------------------------------------------- /libs/gui/tests/FillBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/FillBuffer.h -------------------------------------------------------------------------------- /libs/gui/tests/FrameWaiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/FrameWaiter.h -------------------------------------------------------------------------------- /libs/gui/tests/GLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/GLTest.cpp -------------------------------------------------------------------------------- /libs/gui/tests/GLTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/GLTest.h -------------------------------------------------------------------------------- /libs/gui/tests/IGraphicBufferProducer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/IGraphicBufferProducer_test.cpp -------------------------------------------------------------------------------- /libs/gui/tests/MultiTextureConsumer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/MultiTextureConsumer_test.cpp -------------------------------------------------------------------------------- /libs/gui/tests/SRGB_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/SRGB_test.cpp -------------------------------------------------------------------------------- /libs/gui/tests/StreamSplitter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/StreamSplitter_test.cpp -------------------------------------------------------------------------------- /libs/gui/tests/SurfaceTextureClient_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/SurfaceTextureClient_test.cpp -------------------------------------------------------------------------------- /libs/gui/tests/SurfaceTextureFBO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/SurfaceTextureFBO.h -------------------------------------------------------------------------------- /libs/gui/tests/SurfaceTextureFBO_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/SurfaceTextureFBO_test.cpp -------------------------------------------------------------------------------- /libs/gui/tests/SurfaceTextureGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/SurfaceTextureGL.h -------------------------------------------------------------------------------- /libs/gui/tests/SurfaceTextureGLThreadToGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/SurfaceTextureGLThreadToGL.h -------------------------------------------------------------------------------- /libs/gui/tests/SurfaceTextureGLToGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/SurfaceTextureGLToGL.h -------------------------------------------------------------------------------- /libs/gui/tests/SurfaceTextureGLToGL_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/SurfaceTextureGLToGL_test.cpp -------------------------------------------------------------------------------- /libs/gui/tests/SurfaceTextureGL_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/SurfaceTextureGL_test.cpp -------------------------------------------------------------------------------- /libs/gui/tests/SurfaceTextureMultiContextGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/SurfaceTextureMultiContextGL.h -------------------------------------------------------------------------------- /libs/gui/tests/Surface_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/Surface_test.cpp -------------------------------------------------------------------------------- /libs/gui/tests/TextureRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/TextureRenderer.cpp -------------------------------------------------------------------------------- /libs/gui/tests/TextureRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/gui/tests/TextureRenderer.h -------------------------------------------------------------------------------- /libs/input/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/Android.mk -------------------------------------------------------------------------------- /libs/input/IInputFlinger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/IInputFlinger.cpp -------------------------------------------------------------------------------- /libs/input/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/Input.cpp -------------------------------------------------------------------------------- /libs/input/InputDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/InputDevice.cpp -------------------------------------------------------------------------------- /libs/input/InputTransport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/InputTransport.cpp -------------------------------------------------------------------------------- /libs/input/KeyCharacterMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/KeyCharacterMap.cpp -------------------------------------------------------------------------------- /libs/input/KeyLayoutMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/KeyLayoutMap.cpp -------------------------------------------------------------------------------- /libs/input/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/Keyboard.cpp -------------------------------------------------------------------------------- /libs/input/VelocityControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/VelocityControl.cpp -------------------------------------------------------------------------------- /libs/input/VelocityTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/VelocityTracker.cpp -------------------------------------------------------------------------------- /libs/input/VirtualKeyMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/VirtualKeyMap.cpp -------------------------------------------------------------------------------- /libs/input/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/tests/Android.mk -------------------------------------------------------------------------------- /libs/input/tests/InputChannel_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/tests/InputChannel_test.cpp -------------------------------------------------------------------------------- /libs/input/tests/InputEvent_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/tests/InputEvent_test.cpp -------------------------------------------------------------------------------- /libs/input/tests/StructLayout_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/tests/StructLayout_test.cpp -------------------------------------------------------------------------------- /libs/input/tests/TestHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/input/tests/TestHelpers.h -------------------------------------------------------------------------------- /libs/ui/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/Android.mk -------------------------------------------------------------------------------- /libs/ui/Fence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/Fence.cpp -------------------------------------------------------------------------------- /libs/ui/FrameStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/FrameStats.cpp -------------------------------------------------------------------------------- /libs/ui/Gralloc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/Gralloc1.cpp -------------------------------------------------------------------------------- /libs/ui/Gralloc1On0Adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/Gralloc1On0Adapter.cpp -------------------------------------------------------------------------------- /libs/ui/GraphicBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/GraphicBuffer.cpp -------------------------------------------------------------------------------- /libs/ui/GraphicBufferAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/GraphicBufferAllocator.cpp -------------------------------------------------------------------------------- /libs/ui/GraphicBufferMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/GraphicBufferMapper.cpp -------------------------------------------------------------------------------- /libs/ui/HdrCapabilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/HdrCapabilities.cpp -------------------------------------------------------------------------------- /libs/ui/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/ui/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/NOTICE -------------------------------------------------------------------------------- /libs/ui/PixelFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/PixelFormat.cpp -------------------------------------------------------------------------------- /libs/ui/Rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/Rect.cpp -------------------------------------------------------------------------------- /libs/ui/Region.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/Region.cpp -------------------------------------------------------------------------------- /libs/ui/UiConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/UiConfig.cpp -------------------------------------------------------------------------------- /libs/ui/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/tests/Android.mk -------------------------------------------------------------------------------- /libs/ui/tests/Region_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/tests/Region_test.cpp -------------------------------------------------------------------------------- /libs/ui/tests/mat_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/tests/mat_test.cpp -------------------------------------------------------------------------------- /libs/ui/tests/vec_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/libs/ui/tests/vec_test.cpp -------------------------------------------------------------------------------- /opengl/include/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/EGL/egl.h -------------------------------------------------------------------------------- /opengl/include/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/EGL/eglext.h -------------------------------------------------------------------------------- /opengl/include/EGL/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/EGL/eglplatform.h -------------------------------------------------------------------------------- /opengl/include/ETC1/etc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/ETC1/etc1.h -------------------------------------------------------------------------------- /opengl/include/GLES/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/GLES/egl.h -------------------------------------------------------------------------------- /opengl/include/GLES/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/GLES/gl.h -------------------------------------------------------------------------------- /opengl/include/GLES/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/GLES/glext.h -------------------------------------------------------------------------------- /opengl/include/GLES/glplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/GLES/glplatform.h -------------------------------------------------------------------------------- /opengl/include/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/GLES2/gl2.h -------------------------------------------------------------------------------- /opengl/include/GLES2/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/GLES2/gl2ext.h -------------------------------------------------------------------------------- /opengl/include/GLES2/gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/GLES2/gl2platform.h -------------------------------------------------------------------------------- /opengl/include/GLES3/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/GLES3/gl3.h -------------------------------------------------------------------------------- /opengl/include/GLES3/gl31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/GLES3/gl31.h -------------------------------------------------------------------------------- /opengl/include/GLES3/gl32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/GLES3/gl32.h -------------------------------------------------------------------------------- /opengl/include/GLES3/gl3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/GLES3/gl3ext.h -------------------------------------------------------------------------------- /opengl/include/GLES3/gl3platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/GLES3/gl3platform.h -------------------------------------------------------------------------------- /opengl/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /opengl/include/MODULE_LICENSE_MIT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opengl/libagl/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/Android.mk -------------------------------------------------------------------------------- /opengl/libagl/BufferObjectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/BufferObjectManager.cpp -------------------------------------------------------------------------------- /opengl/libagl/BufferObjectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/BufferObjectManager.h -------------------------------------------------------------------------------- /opengl/libagl/TextureObjectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/TextureObjectManager.cpp -------------------------------------------------------------------------------- /opengl/libagl/TextureObjectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/TextureObjectManager.h -------------------------------------------------------------------------------- /opengl/libagl/TokenManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/TokenManager.cpp -------------------------------------------------------------------------------- /opengl/libagl/TokenManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/TokenManager.h -------------------------------------------------------------------------------- /opengl/libagl/Tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/Tokenizer.cpp -------------------------------------------------------------------------------- /opengl/libagl/Tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/Tokenizer.h -------------------------------------------------------------------------------- /opengl/libagl/arch-mips/fixed_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/arch-mips/fixed_asm.S -------------------------------------------------------------------------------- /opengl/libagl/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/array.cpp -------------------------------------------------------------------------------- /opengl/libagl/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/array.h -------------------------------------------------------------------------------- /opengl/libagl/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/context.h -------------------------------------------------------------------------------- /opengl/libagl/dxt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/dxt.cpp -------------------------------------------------------------------------------- /opengl/libagl/dxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/dxt.h -------------------------------------------------------------------------------- /opengl/libagl/egl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/egl.cpp -------------------------------------------------------------------------------- /opengl/libagl/fixed_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/fixed_asm.S -------------------------------------------------------------------------------- /opengl/libagl/fp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/fp.cpp -------------------------------------------------------------------------------- /opengl/libagl/fp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/fp.h -------------------------------------------------------------------------------- /opengl/libagl/iterators.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/iterators.S -------------------------------------------------------------------------------- /opengl/libagl/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/light.cpp -------------------------------------------------------------------------------- /opengl/libagl/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/light.h -------------------------------------------------------------------------------- /opengl/libagl/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/matrix.cpp -------------------------------------------------------------------------------- /opengl/libagl/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/matrix.h -------------------------------------------------------------------------------- /opengl/libagl/mipmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/mipmap.cpp -------------------------------------------------------------------------------- /opengl/libagl/primitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/primitives.cpp -------------------------------------------------------------------------------- /opengl/libagl/primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/primitives.h -------------------------------------------------------------------------------- /opengl/libagl/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/state.cpp -------------------------------------------------------------------------------- /opengl/libagl/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/state.h -------------------------------------------------------------------------------- /opengl/libagl/texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/texture.cpp -------------------------------------------------------------------------------- /opengl/libagl/texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/texture.h -------------------------------------------------------------------------------- /opengl/libagl/vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/vertex.cpp -------------------------------------------------------------------------------- /opengl/libagl/vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libagl/vertex.h -------------------------------------------------------------------------------- /opengl/libs/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/Android.mk -------------------------------------------------------------------------------- /opengl/libs/EGL/Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/EGL/Loader.cpp -------------------------------------------------------------------------------- /opengl/libs/EGL/Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/EGL/Loader.h -------------------------------------------------------------------------------- /opengl/libs/EGL/egl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/EGL/egl.cpp -------------------------------------------------------------------------------- /opengl/libs/EGL/eglApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/EGL/eglApi.cpp -------------------------------------------------------------------------------- /opengl/libs/EGL/egl_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/EGL/egl_cache.cpp -------------------------------------------------------------------------------- /opengl/libs/EGL/egl_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/EGL/egl_cache.h -------------------------------------------------------------------------------- /opengl/libs/EGL/egl_display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/EGL/egl_display.cpp -------------------------------------------------------------------------------- /opengl/libs/EGL/egl_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/EGL/egl_display.h -------------------------------------------------------------------------------- /opengl/libs/EGL/egl_entries.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/EGL/egl_entries.in -------------------------------------------------------------------------------- /opengl/libs/EGL/egl_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/EGL/egl_object.cpp -------------------------------------------------------------------------------- /opengl/libs/EGL/egl_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/EGL/egl_object.h -------------------------------------------------------------------------------- /opengl/libs/EGL/egl_tls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/EGL/egl_tls.cpp -------------------------------------------------------------------------------- /opengl/libs/EGL/egl_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/EGL/egl_tls.h -------------------------------------------------------------------------------- /opengl/libs/EGL/egldefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/EGL/egldefs.h -------------------------------------------------------------------------------- /opengl/libs/EGL/getProcAddress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/EGL/getProcAddress.cpp -------------------------------------------------------------------------------- /opengl/libs/ETC1/etc1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/ETC1/etc1.cpp -------------------------------------------------------------------------------- /opengl/libs/GLES2/gl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/GLES2/gl2.cpp -------------------------------------------------------------------------------- /opengl/libs/GLES2/gl2_api.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/GLES2/gl2_api.in -------------------------------------------------------------------------------- /opengl/libs/GLES2/gl2ext_api.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/GLES2/gl2ext_api.in -------------------------------------------------------------------------------- /opengl/libs/GLES_CM/gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/GLES_CM/gl.cpp -------------------------------------------------------------------------------- /opengl/libs/GLES_CM/gl_api.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/GLES_CM/gl_api.in -------------------------------------------------------------------------------- /opengl/libs/GLES_CM/glext_api.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/GLES_CM/glext_api.in -------------------------------------------------------------------------------- /opengl/libs/egl_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/egl_impl.h -------------------------------------------------------------------------------- /opengl/libs/entries.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/entries.in -------------------------------------------------------------------------------- /opengl/libs/enums.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/enums.in -------------------------------------------------------------------------------- /opengl/libs/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/hooks.h -------------------------------------------------------------------------------- /opengl/libs/tools/genfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/tools/genfiles -------------------------------------------------------------------------------- /opengl/libs/tools/glapigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/tools/glapigen -------------------------------------------------------------------------------- /opengl/libs/tools/glentrygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/tools/glentrygen -------------------------------------------------------------------------------- /opengl/libs/tools/glenumsgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/libs/tools/glenumsgen -------------------------------------------------------------------------------- /opengl/specs/EGL_ANDROID_blob_cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/specs/EGL_ANDROID_blob_cache.txt -------------------------------------------------------------------------------- /opengl/specs/EGL_ANDROID_framebuffer_target.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/specs/EGL_ANDROID_framebuffer_target.txt -------------------------------------------------------------------------------- /opengl/specs/EGL_ANDROID_native_fence_sync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/specs/EGL_ANDROID_native_fence_sync.txt -------------------------------------------------------------------------------- /opengl/specs/EGL_ANDROID_presentation_time.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/specs/EGL_ANDROID_presentation_time.txt -------------------------------------------------------------------------------- /opengl/specs/EGL_ANDROID_recordable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/specs/EGL_ANDROID_recordable.txt -------------------------------------------------------------------------------- /opengl/specs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/specs/README -------------------------------------------------------------------------------- /opengl/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/Android.mk -------------------------------------------------------------------------------- /opengl/tests/EGLTest/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/EGLTest/Android.mk -------------------------------------------------------------------------------- /opengl/tests/EGLTest/EGL_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/EGLTest/EGL_test.cpp -------------------------------------------------------------------------------- /opengl/tests/EGLTest/egl_cache_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/EGLTest/egl_cache_test.cpp -------------------------------------------------------------------------------- /opengl/tests/angeles/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/angeles/Android.mk -------------------------------------------------------------------------------- /opengl/tests/angeles/MODULE_LICENSE_BSD_OR_LGPL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opengl/tests/angeles/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/angeles/README.txt -------------------------------------------------------------------------------- /opengl/tests/angeles/app-linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/angeles/app-linux.cpp -------------------------------------------------------------------------------- /opengl/tests/angeles/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/angeles/app.h -------------------------------------------------------------------------------- /opengl/tests/angeles/cams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/angeles/cams.h -------------------------------------------------------------------------------- /opengl/tests/angeles/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/angeles/demo.c -------------------------------------------------------------------------------- /opengl/tests/angeles/include/GLES/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/angeles/include/GLES/egl.h -------------------------------------------------------------------------------- /opengl/tests/angeles/include/GLES/egltypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/angeles/include/GLES/egltypes.h -------------------------------------------------------------------------------- /opengl/tests/angeles/include/GLES/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/angeles/include/GLES/gl.h -------------------------------------------------------------------------------- /opengl/tests/angeles/license-BSD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/angeles/license-BSD.txt -------------------------------------------------------------------------------- /opengl/tests/angeles/license-LGPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/angeles/license-LGPL.txt -------------------------------------------------------------------------------- /opengl/tests/angeles/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/angeles/license.txt -------------------------------------------------------------------------------- /opengl/tests/angeles/shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/angeles/shapes.h -------------------------------------------------------------------------------- /opengl/tests/configdump/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/configdump/Android.mk -------------------------------------------------------------------------------- /opengl/tests/configdump/configdump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/configdump/configdump.cpp -------------------------------------------------------------------------------- /opengl/tests/fillrate/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/fillrate/Android.mk -------------------------------------------------------------------------------- /opengl/tests/fillrate/fillrate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/fillrate/fillrate.cpp -------------------------------------------------------------------------------- /opengl/tests/filter/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/filter/Android.mk -------------------------------------------------------------------------------- /opengl/tests/filter/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/filter/filter.cpp -------------------------------------------------------------------------------- /opengl/tests/finish/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/finish/Android.mk -------------------------------------------------------------------------------- /opengl/tests/finish/finish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/finish/finish.cpp -------------------------------------------------------------------------------- /opengl/tests/gl2_basic/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl2_basic/Android.mk -------------------------------------------------------------------------------- /opengl/tests/gl2_basic/gl2_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl2_basic/gl2_basic.cpp -------------------------------------------------------------------------------- /opengl/tests/gl2_cameraeye/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl2_cameraeye/Android.mk -------------------------------------------------------------------------------- /opengl/tests/gl2_cameraeye/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl2_cameraeye/AndroidManifest.xml -------------------------------------------------------------------------------- /opengl/tests/gl2_copyTexImage/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl2_copyTexImage/Android.mk -------------------------------------------------------------------------------- /opengl/tests/gl2_java/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl2_java/Android.mk -------------------------------------------------------------------------------- /opengl/tests/gl2_java/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl2_java/AndroidManifest.xml -------------------------------------------------------------------------------- /opengl/tests/gl2_java/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl2_java/res/values/strings.xml -------------------------------------------------------------------------------- /opengl/tests/gl2_jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl2_jni/Android.mk -------------------------------------------------------------------------------- /opengl/tests/gl2_jni/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl2_jni/AndroidManifest.xml -------------------------------------------------------------------------------- /opengl/tests/gl2_jni/jni/gl_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl2_jni/jni/gl_code.cpp -------------------------------------------------------------------------------- /opengl/tests/gl2_jni/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl2_jni/res/values/strings.xml -------------------------------------------------------------------------------- /opengl/tests/gl2_yuvtex/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl2_yuvtex/Android.mk -------------------------------------------------------------------------------- /opengl/tests/gl2_yuvtex/gl2_yuvtex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl2_yuvtex/gl2_yuvtex.cpp -------------------------------------------------------------------------------- /opengl/tests/gl_basic/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_basic/Android.mk -------------------------------------------------------------------------------- /opengl/tests/gl_basic/gl_basic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_basic/gl_basic.cpp -------------------------------------------------------------------------------- /opengl/tests/gl_jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_jni/Android.mk -------------------------------------------------------------------------------- /opengl/tests/gl_jni/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_jni/AndroidManifest.xml -------------------------------------------------------------------------------- /opengl/tests/gl_jni/jni/gl_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_jni/jni/gl_code.cpp -------------------------------------------------------------------------------- /opengl/tests/gl_jni/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_jni/res/values/strings.xml -------------------------------------------------------------------------------- /opengl/tests/gl_perf/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_perf/Android.mk -------------------------------------------------------------------------------- /opengl/tests/gl_perf/fill_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_perf/fill_common.cpp -------------------------------------------------------------------------------- /opengl/tests/gl_perf/filltest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_perf/filltest.cpp -------------------------------------------------------------------------------- /opengl/tests/gl_perf/fragment_shaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_perf/fragment_shaders.cpp -------------------------------------------------------------------------------- /opengl/tests/gl_perf/gl2_perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_perf/gl2_perf.cpp -------------------------------------------------------------------------------- /opengl/tests/gl_perfapp/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_perfapp/Android.mk -------------------------------------------------------------------------------- /opengl/tests/gl_perfapp/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_perfapp/AndroidManifest.xml -------------------------------------------------------------------------------- /opengl/tests/gl_perfapp/jni/gl_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_perfapp/jni/gl_code.cpp -------------------------------------------------------------------------------- /opengl/tests/gl_perfapp/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_perfapp/res/values/strings.xml -------------------------------------------------------------------------------- /opengl/tests/gl_yuvtex/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_yuvtex/Android.mk -------------------------------------------------------------------------------- /opengl/tests/gl_yuvtex/gl_yuvtex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gl_yuvtex/gl_yuvtex.cpp -------------------------------------------------------------------------------- /opengl/tests/gldual/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gldual/Android.mk -------------------------------------------------------------------------------- /opengl/tests/gldual/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gldual/AndroidManifest.xml -------------------------------------------------------------------------------- /opengl/tests/gldual/jni/gl_code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gldual/jni/gl_code.cpp -------------------------------------------------------------------------------- /opengl/tests/gldual/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gldual/res/values/strings.xml -------------------------------------------------------------------------------- /opengl/tests/gralloc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gralloc/Android.mk -------------------------------------------------------------------------------- /opengl/tests/gralloc/gralloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/gralloc/gralloc.cpp -------------------------------------------------------------------------------- /opengl/tests/hwc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/hwc/Android.mk -------------------------------------------------------------------------------- /opengl/tests/hwc/hwcColorEquiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/hwc/hwcColorEquiv.cpp -------------------------------------------------------------------------------- /opengl/tests/hwc/hwcCommit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/hwc/hwcCommit.cpp -------------------------------------------------------------------------------- /opengl/tests/hwc/hwcRects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/hwc/hwcRects.cpp -------------------------------------------------------------------------------- /opengl/tests/hwc/hwcStress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/hwc/hwcStress.cpp -------------------------------------------------------------------------------- /opengl/tests/hwc/hwcTestLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/hwc/hwcTestLib.cpp -------------------------------------------------------------------------------- /opengl/tests/hwc/hwcTestLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/hwc/hwcTestLib.h -------------------------------------------------------------------------------- /opengl/tests/include/EGLUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/include/EGLUtils.h -------------------------------------------------------------------------------- /opengl/tests/include/WindowSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/include/WindowSurface.h -------------------------------------------------------------------------------- /opengl/tests/include/glTestLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/include/glTestLib.h -------------------------------------------------------------------------------- /opengl/tests/lib/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/lib/Android.mk -------------------------------------------------------------------------------- /opengl/tests/lib/WindowSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/lib/WindowSurface.cpp -------------------------------------------------------------------------------- /opengl/tests/lib/glTestLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/lib/glTestLib.cpp -------------------------------------------------------------------------------- /opengl/tests/lighting1709/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/lighting1709/Android.mk -------------------------------------------------------------------------------- /opengl/tests/lighting1709/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/lighting1709/AndroidManifest.xml -------------------------------------------------------------------------------- /opengl/tests/linetex/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/linetex/Android.mk -------------------------------------------------------------------------------- /opengl/tests/linetex/linetex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/linetex/linetex.cpp -------------------------------------------------------------------------------- /opengl/tests/swapinterval/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/swapinterval/Android.mk -------------------------------------------------------------------------------- /opengl/tests/swapinterval/swapinterval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/swapinterval/swapinterval.cpp -------------------------------------------------------------------------------- /opengl/tests/testFramerate/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/testFramerate/Android.mk -------------------------------------------------------------------------------- /opengl/tests/testFramerate/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/testFramerate/AndroidManifest.xml -------------------------------------------------------------------------------- /opengl/tests/testLatency/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/testLatency/Android.mk -------------------------------------------------------------------------------- /opengl/tests/testLatency/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/testLatency/AndroidManifest.xml -------------------------------------------------------------------------------- /opengl/tests/testLatency/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/testLatency/res/values/strings.xml -------------------------------------------------------------------------------- /opengl/tests/testPauseResume/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/testPauseResume/Android.mk -------------------------------------------------------------------------------- /opengl/tests/testPauseResume/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/testPauseResume/README -------------------------------------------------------------------------------- /opengl/tests/testViewport/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/testViewport/Android.mk -------------------------------------------------------------------------------- /opengl/tests/testViewport/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/testViewport/AndroidManifest.xml -------------------------------------------------------------------------------- /opengl/tests/testViewport/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/testViewport/README -------------------------------------------------------------------------------- /opengl/tests/textures/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/textures/Android.mk -------------------------------------------------------------------------------- /opengl/tests/textures/textures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/textures/textures.cpp -------------------------------------------------------------------------------- /opengl/tests/tritex/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/tritex/Android.mk -------------------------------------------------------------------------------- /opengl/tests/tritex/tritex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tests/tritex/tritex.cpp -------------------------------------------------------------------------------- /opengl/tools/glgen/.gitignore: -------------------------------------------------------------------------------- 1 | generated 2 | out 3 | -------------------------------------------------------------------------------- /opengl/tools/glgen/convert_to_java.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/convert_to_java.py -------------------------------------------------------------------------------- /opengl/tools/glgen/gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/gen -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/egl/EGL14.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/egl/EGL14.spec -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/egl/EGLExt.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/egl/EGLExt.spec -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/egl/checks.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/egl/checks.spec -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/gles11/GLES10.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/gles11/GLES10.spec -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/gles11/GLES10Ext.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/gles11/GLES10Ext.spec -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/gles11/GLES11.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/gles11/GLES11.spec -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/gles11/GLES11Ext.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/gles11/GLES11Ext.spec -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/gles11/GLES20.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/gles11/GLES20.spec -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/gles11/GLES30.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/gles11/GLES30.spec -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/gles11/GLES31.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/gles11/GLES31.spec -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/gles11/GLES31Ext.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/gles11/GLES31Ext.spec -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/gles11/GLES32.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/gles11/GLES32.spec -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/gles11/checks.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/gles11/checks.spec -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/jsr239/glspec-1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/jsr239/glspec-1.0 -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/jsr239/glspec-1.0ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/jsr239/glspec-1.0ext -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/jsr239/glspec-1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/jsr239/glspec-1.1 -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/jsr239/glspec-1.1ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/jsr239/glspec-1.1ext -------------------------------------------------------------------------------- /opengl/tools/glgen/specs/jsr239/glspec-checks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/specs/jsr239/glspec-checks -------------------------------------------------------------------------------- /opengl/tools/glgen/src/.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | -------------------------------------------------------------------------------- /opengl/tools/glgen/src/CFunc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/src/CFunc.java -------------------------------------------------------------------------------- /opengl/tools/glgen/src/CType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/src/CType.java -------------------------------------------------------------------------------- /opengl/tools/glgen/src/CodeEmitter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/src/CodeEmitter.java -------------------------------------------------------------------------------- /opengl/tools/glgen/src/EGLCodeEmitter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/src/EGLCodeEmitter.java -------------------------------------------------------------------------------- /opengl/tools/glgen/src/GLESCodeEmitter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/src/GLESCodeEmitter.java -------------------------------------------------------------------------------- /opengl/tools/glgen/src/GenerateEGL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/src/GenerateEGL.java -------------------------------------------------------------------------------- /opengl/tools/glgen/src/GenerateGL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/src/GenerateGL.java -------------------------------------------------------------------------------- /opengl/tools/glgen/src/GenerateGLES.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/src/GenerateGLES.java -------------------------------------------------------------------------------- /opengl/tools/glgen/src/JFunc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/src/JFunc.java -------------------------------------------------------------------------------- /opengl/tools/glgen/src/JType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/src/JType.java -------------------------------------------------------------------------------- /opengl/tools/glgen/src/JniCodeEmitter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/src/JniCodeEmitter.java -------------------------------------------------------------------------------- /opengl/tools/glgen/src/Jsr239CodeEmitter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/src/Jsr239CodeEmitter.java -------------------------------------------------------------------------------- /opengl/tools/glgen/src/ParameterChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/src/ParameterChecker.java -------------------------------------------------------------------------------- /opengl/tools/glgen/static/egl/EGLConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/static/egl/EGLConfig.java -------------------------------------------------------------------------------- /opengl/tools/glgen/static/egl/EGLContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/static/egl/EGLContext.java -------------------------------------------------------------------------------- /opengl/tools/glgen/static/egl/EGLDisplay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/static/egl/EGLDisplay.java -------------------------------------------------------------------------------- /opengl/tools/glgen/static/egl/EGLSurface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/static/egl/EGLSurface.java -------------------------------------------------------------------------------- /opengl/tools/glgen/stubs/egl/EGL14cHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/stubs/egl/EGL14cHeader.cpp -------------------------------------------------------------------------------- /opengl/tools/glgen/stubs/gles11/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/stubs/gles11/common.cpp -------------------------------------------------------------------------------- /opengl/tools/glgen/stubs/jsr239/GLCHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen/stubs/jsr239/GLCHeader.cpp -------------------------------------------------------------------------------- /opengl/tools/glgen2/.gitignore: -------------------------------------------------------------------------------- 1 | registry/reg.pyc 2 | -------------------------------------------------------------------------------- /opengl/tools/glgen2/glgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen2/glgen.py -------------------------------------------------------------------------------- /opengl/tools/glgen2/registry/egl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen2/registry/egl.xml -------------------------------------------------------------------------------- /opengl/tools/glgen2/registry/genheaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen2/registry/genheaders.py -------------------------------------------------------------------------------- /opengl/tools/glgen2/registry/gl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen2/registry/gl.xml -------------------------------------------------------------------------------- /opengl/tools/glgen2/registry/reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/opengl/tools/glgen2/registry/reg.py -------------------------------------------------------------------------------- /services/batteryservice/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/batteryservice/Android.mk -------------------------------------------------------------------------------- /services/batteryservice/BatteryProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/batteryservice/BatteryProperties.cpp -------------------------------------------------------------------------------- /services/batteryservice/BatteryProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/batteryservice/BatteryProperty.cpp -------------------------------------------------------------------------------- /services/inputflinger/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/Android.mk -------------------------------------------------------------------------------- /services/inputflinger/EventHub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/EventHub.cpp -------------------------------------------------------------------------------- /services/inputflinger/EventHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/EventHub.h -------------------------------------------------------------------------------- /services/inputflinger/InputApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/InputApplication.cpp -------------------------------------------------------------------------------- /services/inputflinger/InputApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/InputApplication.h -------------------------------------------------------------------------------- /services/inputflinger/InputDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/InputDispatcher.cpp -------------------------------------------------------------------------------- /services/inputflinger/InputDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/InputDispatcher.h -------------------------------------------------------------------------------- /services/inputflinger/InputListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/InputListener.cpp -------------------------------------------------------------------------------- /services/inputflinger/InputListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/InputListener.h -------------------------------------------------------------------------------- /services/inputflinger/InputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/InputManager.cpp -------------------------------------------------------------------------------- /services/inputflinger/InputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/InputManager.h -------------------------------------------------------------------------------- /services/inputflinger/InputReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/InputReader.cpp -------------------------------------------------------------------------------- /services/inputflinger/InputReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/InputReader.h -------------------------------------------------------------------------------- /services/inputflinger/InputWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/InputWindow.cpp -------------------------------------------------------------------------------- /services/inputflinger/InputWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/InputWindow.h -------------------------------------------------------------------------------- /services/inputflinger/host/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/host/Android.mk -------------------------------------------------------------------------------- /services/inputflinger/host/InputDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/host/InputDriver.cpp -------------------------------------------------------------------------------- /services/inputflinger/host/InputDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/host/InputDriver.h -------------------------------------------------------------------------------- /services/inputflinger/host/InputFlinger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/host/InputFlinger.cpp -------------------------------------------------------------------------------- /services/inputflinger/host/InputFlinger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/host/InputFlinger.h -------------------------------------------------------------------------------- /services/inputflinger/host/InputHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/host/InputHost.cpp -------------------------------------------------------------------------------- /services/inputflinger/host/InputHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/host/InputHost.h -------------------------------------------------------------------------------- /services/inputflinger/host/inputflinger.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/host/inputflinger.rc -------------------------------------------------------------------------------- /services/inputflinger/host/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/host/main.cpp -------------------------------------------------------------------------------- /services/inputflinger/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/inputflinger/tests/Android.mk -------------------------------------------------------------------------------- /services/powermanager/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/powermanager/Android.mk -------------------------------------------------------------------------------- /services/powermanager/IPowerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/powermanager/IPowerManager.cpp -------------------------------------------------------------------------------- /services/sensorservice/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/Android.mk -------------------------------------------------------------------------------- /services/sensorservice/BatteryService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/BatteryService.cpp -------------------------------------------------------------------------------- /services/sensorservice/BatteryService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/BatteryService.h -------------------------------------------------------------------------------- /services/sensorservice/CorrectedGyroSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/CorrectedGyroSensor.h -------------------------------------------------------------------------------- /services/sensorservice/Fusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/Fusion.cpp -------------------------------------------------------------------------------- /services/sensorservice/Fusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/Fusion.h -------------------------------------------------------------------------------- /services/sensorservice/GravitySensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/GravitySensor.cpp -------------------------------------------------------------------------------- /services/sensorservice/GravitySensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/GravitySensor.h -------------------------------------------------------------------------------- /services/sensorservice/OrientationSensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/OrientationSensor.cpp -------------------------------------------------------------------------------- /services/sensorservice/OrientationSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/OrientationSensor.h -------------------------------------------------------------------------------- /services/sensorservice/RecentEventLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/RecentEventLogger.cpp -------------------------------------------------------------------------------- /services/sensorservice/RecentEventLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/RecentEventLogger.h -------------------------------------------------------------------------------- /services/sensorservice/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/RingBuffer.h -------------------------------------------------------------------------------- /services/sensorservice/RotationVectorSensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/RotationVectorSensor.h -------------------------------------------------------------------------------- /services/sensorservice/SensorDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/SensorDevice.cpp -------------------------------------------------------------------------------- /services/sensorservice/SensorDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/SensorDevice.h -------------------------------------------------------------------------------- /services/sensorservice/SensorFusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/SensorFusion.cpp -------------------------------------------------------------------------------- /services/sensorservice/SensorFusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/SensorFusion.h -------------------------------------------------------------------------------- /services/sensorservice/SensorInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/SensorInterface.cpp -------------------------------------------------------------------------------- /services/sensorservice/SensorInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/SensorInterface.h -------------------------------------------------------------------------------- /services/sensorservice/SensorList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/SensorList.cpp -------------------------------------------------------------------------------- /services/sensorservice/SensorList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/SensorList.h -------------------------------------------------------------------------------- /services/sensorservice/SensorRecord.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/SensorRecord.cpp -------------------------------------------------------------------------------- /services/sensorservice/SensorRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/SensorRecord.h -------------------------------------------------------------------------------- /services/sensorservice/SensorService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/SensorService.cpp -------------------------------------------------------------------------------- /services/sensorservice/SensorService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/SensorService.h -------------------------------------------------------------------------------- /services/sensorservice/SensorServiceUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/SensorServiceUtils.cpp -------------------------------------------------------------------------------- /services/sensorservice/SensorServiceUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/SensorServiceUtils.h -------------------------------------------------------------------------------- /services/sensorservice/main_sensorservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/main_sensorservice.cpp -------------------------------------------------------------------------------- /services/sensorservice/mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/mat.h -------------------------------------------------------------------------------- /services/sensorservice/quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/quat.h -------------------------------------------------------------------------------- /services/sensorservice/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/tests/Android.mk -------------------------------------------------------------------------------- /services/sensorservice/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/traits.h -------------------------------------------------------------------------------- /services/sensorservice/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/sensorservice/vec.h -------------------------------------------------------------------------------- /services/surfaceflinger/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/Android.mk -------------------------------------------------------------------------------- /services/surfaceflinger/Barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/Barrier.h -------------------------------------------------------------------------------- /services/surfaceflinger/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/Client.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/Client.h -------------------------------------------------------------------------------- /services/surfaceflinger/Colorizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/Colorizer.h -------------------------------------------------------------------------------- /services/surfaceflinger/DdmConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/DdmConnection.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/DdmConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/DdmConnection.h -------------------------------------------------------------------------------- /services/surfaceflinger/DispSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/DispSync.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/DispSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/DispSync.h -------------------------------------------------------------------------------- /services/surfaceflinger/DisplayDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/DisplayDevice.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/DisplayDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/DisplayDevice.h -------------------------------------------------------------------------------- /services/surfaceflinger/DisplayUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/DisplayUtils.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/DisplayUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/DisplayUtils.h -------------------------------------------------------------------------------- /services/surfaceflinger/Effects/Daltonizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/Effects/Daltonizer.h -------------------------------------------------------------------------------- /services/surfaceflinger/EventControlThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/EventControlThread.h -------------------------------------------------------------------------------- /services/surfaceflinger/EventLog/EventLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/EventLog/EventLog.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/EventLog/EventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/EventLog/EventLog.h -------------------------------------------------------------------------------- /services/surfaceflinger/EventThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/EventThread.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/EventThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/EventThread.h -------------------------------------------------------------------------------- /services/surfaceflinger/FenceTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/FenceTracker.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/FenceTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/FenceTracker.h -------------------------------------------------------------------------------- /services/surfaceflinger/FrameRateHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/FrameRateHelper.h -------------------------------------------------------------------------------- /services/surfaceflinger/FrameTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/FrameTracker.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/FrameTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/FrameTracker.h -------------------------------------------------------------------------------- /services/surfaceflinger/GpuService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/GpuService.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/GpuService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/GpuService.h -------------------------------------------------------------------------------- /services/surfaceflinger/Layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/Layer.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/Layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/Layer.h -------------------------------------------------------------------------------- /services/surfaceflinger/LayerBlur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/LayerBlur.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/LayerBlur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/LayerBlur.h -------------------------------------------------------------------------------- /services/surfaceflinger/LayerDim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/LayerDim.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/LayerDim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/LayerDim.h -------------------------------------------------------------------------------- /services/surfaceflinger/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /services/surfaceflinger/MessageQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/MessageQueue.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/MessageQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/MessageQueue.h -------------------------------------------------------------------------------- /services/surfaceflinger/MonitoredProducer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/MonitoredProducer.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/MonitoredProducer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/MonitoredProducer.h -------------------------------------------------------------------------------- /services/surfaceflinger/RenderEngine/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/RenderEngine/Mesh.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/RenderEngine/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/RenderEngine/Mesh.h -------------------------------------------------------------------------------- /services/surfaceflinger/SurfaceFlinger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/SurfaceFlinger.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/SurfaceFlinger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/SurfaceFlinger.h -------------------------------------------------------------------------------- /services/surfaceflinger/Transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/Transform.cpp -------------------------------------------------------------------------------- /services/surfaceflinger/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/Transform.h -------------------------------------------------------------------------------- /services/surfaceflinger/clz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/clz.h -------------------------------------------------------------------------------- /services/surfaceflinger/surfaceflinger.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/surfaceflinger.rc -------------------------------------------------------------------------------- /services/surfaceflinger/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/tests/Android.mk -------------------------------------------------------------------------------- /services/surfaceflinger/tests/vsync/vsync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/services/surfaceflinger/tests/vsync/vsync.cpp -------------------------------------------------------------------------------- /vulkan/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Chromium 2 | IndentWidth: 4 3 | -------------------------------------------------------------------------------- /vulkan/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/Android.mk -------------------------------------------------------------------------------- /vulkan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/README.md -------------------------------------------------------------------------------- /vulkan/api/platform.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/api/platform.api -------------------------------------------------------------------------------- /vulkan/api/templates/asciidoc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/api/templates/asciidoc.tmpl -------------------------------------------------------------------------------- /vulkan/api/templates/vk_xml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/api/templates/vk_xml.tmpl -------------------------------------------------------------------------------- /vulkan/api/templates/vulkan_common.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/api/templates/vulkan_common.tmpl -------------------------------------------------------------------------------- /vulkan/api/templates/vulkan_h.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/api/templates/vulkan_h.tmpl -------------------------------------------------------------------------------- /vulkan/api/vulkan.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/api/vulkan.api -------------------------------------------------------------------------------- /vulkan/doc/implementors_guide/implementors_guide.conf: -------------------------------------------------------------------------------- 1 | [attributes] 2 | newline=\n 3 | 4 | [replacements] 5 | \+\/-=± 6 | -------------------------------------------------------------------------------- /vulkan/include/hardware/hwvulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/include/hardware/hwvulkan.h -------------------------------------------------------------------------------- /vulkan/include/vulkan/vk_layer_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/include/vulkan/vk_layer_interface.h -------------------------------------------------------------------------------- /vulkan/include/vulkan/vk_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/include/vulkan/vk_platform.h -------------------------------------------------------------------------------- /vulkan/include/vulkan/vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/include/vulkan/vulkan.h -------------------------------------------------------------------------------- /vulkan/include/vulkan/vulkan_loader_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/include/vulkan/vulkan_loader_data.h -------------------------------------------------------------------------------- /vulkan/libvulkan/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/Android.mk -------------------------------------------------------------------------------- /vulkan/libvulkan/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/api.cpp -------------------------------------------------------------------------------- /vulkan/libvulkan/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/api.h -------------------------------------------------------------------------------- /vulkan/libvulkan/api_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/api_gen.cpp -------------------------------------------------------------------------------- /vulkan/libvulkan/api_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/api_gen.h -------------------------------------------------------------------------------- /vulkan/libvulkan/code-generator.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/code-generator.tmpl -------------------------------------------------------------------------------- /vulkan/libvulkan/debug_report.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/debug_report.cpp -------------------------------------------------------------------------------- /vulkan/libvulkan/debug_report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/debug_report.h -------------------------------------------------------------------------------- /vulkan/libvulkan/driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/driver.cpp -------------------------------------------------------------------------------- /vulkan/libvulkan/driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/driver.h -------------------------------------------------------------------------------- /vulkan/libvulkan/driver_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/driver_gen.cpp -------------------------------------------------------------------------------- /vulkan/libvulkan/driver_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/driver_gen.h -------------------------------------------------------------------------------- /vulkan/libvulkan/layers_extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/layers_extensions.cpp -------------------------------------------------------------------------------- /vulkan/libvulkan/layers_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/layers_extensions.h -------------------------------------------------------------------------------- /vulkan/libvulkan/stubhal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/stubhal.cpp -------------------------------------------------------------------------------- /vulkan/libvulkan/stubhal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/stubhal.h -------------------------------------------------------------------------------- /vulkan/libvulkan/swapchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/swapchain.cpp -------------------------------------------------------------------------------- /vulkan/libvulkan/swapchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/swapchain.h -------------------------------------------------------------------------------- /vulkan/libvulkan/vulkan_loader_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/libvulkan/vulkan_loader_data.cpp -------------------------------------------------------------------------------- /vulkan/nulldrv/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/nulldrv/Android.mk -------------------------------------------------------------------------------- /vulkan/nulldrv/null_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/nulldrv/null_driver.cpp -------------------------------------------------------------------------------- /vulkan/nulldrv/null_driver.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/nulldrv/null_driver.tmpl -------------------------------------------------------------------------------- /vulkan/nulldrv/null_driver_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/nulldrv/null_driver_gen.cpp -------------------------------------------------------------------------------- /vulkan/nulldrv/null_driver_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/nulldrv/null_driver_gen.h -------------------------------------------------------------------------------- /vulkan/tools/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/tools/Android.mk -------------------------------------------------------------------------------- /vulkan/tools/vkinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_frameworks_native/HEAD/vulkan/tools/vkinfo.cpp --------------------------------------------------------------------------------