-
Notifications
You must be signed in to change notification settings - Fork 531
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dev/grendel/fix-proxy-throwable
* main: [Mono.Android] Fix missing enum issues that cause BG8800 warnings. (#8707) Bump external/Java.Interop from `3436a30` to `5bca8ad` (#8803) Bump to xamarin/monodroid@77124dc1 (#8804) Bump to dotnet/installer@e911f5c82c 9.0.100-preview.3.24161.2 (#8802) Bump to xamarin/Java.Interop/main@3436a30 (#8799)
- Loading branch information
Showing
17 changed files
with
267 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
xamarin/monodroid:main@e13723e701307f9f6966d4b309c3eba10a741694 | ||
xamarin/monodroid:main@77124dc16985a92077e62b0cfeaeb007c4d4fd2a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule Java.Interop
updated
from a7e09b to 5bca8a
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
using Android.Runtime; | ||
using Java.Interop; | ||
|
||
namespace Android.Hardware; | ||
|
||
public partial class HardwareBuffer | ||
{ | ||
// These are manually bound because we do not have a way to bind the `long` enum values. | ||
// generator treats them as int, like: | ||
// __args [4] = new JniArgumentValue ((int) usage); | ||
|
||
// Metadata.xml XPath method reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/method[@name='create' and count(parameter)=5 and parameter[1][@type='int'] and parameter[2][@type='int'] and parameter[3][@type='int'] and parameter[4][@type='int'] and parameter[5][@type='long']]" | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android26.0")] | ||
[Register ("create", "(IIIIJ)Landroid/hardware/HardwareBuffer;", "", ApiSince = 26)] | ||
public static unsafe Android.Hardware.HardwareBuffer Create (int width, int height, [global::Android.Runtime.GeneratedEnum] Android.Hardware.HardwareBufferFormat format, int layers, Android.Hardware.HardwareBufferUsage usage) | ||
{ | ||
const string __id = "create.(IIIIJ)Landroid/hardware/HardwareBuffer;"; | ||
try { | ||
JniArgumentValue* __args = stackalloc JniArgumentValue [5]; | ||
__args [0] = new JniArgumentValue (width); | ||
__args [1] = new JniArgumentValue (height); | ||
__args [2] = new JniArgumentValue ((int) format); | ||
__args [3] = new JniArgumentValue (layers); | ||
__args [4] = new JniArgumentValue ((long) usage); | ||
var __rm = _members.StaticMethods.InvokeObjectMethod (__id, __args); | ||
return global::Java.Lang.Object.GetObject<Android.Hardware.HardwareBuffer> (__rm.Handle, JniHandleOwnership.TransferLocalRef)!; | ||
} finally { | ||
} | ||
} | ||
|
||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android26.0")] | ||
public unsafe Android.Hardware.HardwareBufferUsage Usage { | ||
// Metadata.xml XPath method reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/method[@name='getUsage' and count(parameter)=0]" | ||
[Register ("getUsage", "()J", "", ApiSince = 26)] | ||
get { | ||
const string __id = "getUsage.()J"; | ||
try { | ||
var __rm = _members.InstanceMethods.InvokeAbstractInt64Method (__id, this, null); | ||
return (Android.Hardware.HardwareBufferUsage) __rm!; | ||
} finally { | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
namespace Android.Hardware; | ||
|
||
[System.Flags] | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android26.0")] | ||
public enum HardwareBufferUsage : long | ||
{ | ||
None = 0, | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/field[@name='USAGE_COMPOSER_OVERLAY']" | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android33.0")] | ||
UsageComposerOverlay = 2048, | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/field[@name='USAGE_CPU_READ_OFTEN']" | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android26.0")] | ||
UsageCpuReadOften = 3, | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/field[@name='USAGE_CPU_READ_RARELY']" | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android26.0")] | ||
UsageCpuReadRarely = 2, | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/field[@name='USAGE_CPU_WRITE_OFTEN']" | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android26.0")] | ||
UsageCpuWriteOften = 48, | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/field[@name='USAGE_CPU_WRITE_RARELY']" | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android26.0")] | ||
UsageCpuWriteRarely = 32, | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/field[@name='USAGE_FRONT_BUFFER']" | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android33.0")] | ||
UsageFrontBuffer = 4294967296, | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/field[@name='USAGE_GPU_COLOR_OUTPUT']" | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android26.0")] | ||
UsageGpuColorOutput = 512, | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/field[@name='USAGE_GPU_CUBE_MAP']" | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android28.0")] | ||
UsageGpuCubeMap = 33554432, | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/field[@name='USAGE_GPU_DATA_BUFFER']" | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android26.0")] | ||
UsageGpuDataBuffer = 16777216, | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/field[@name='USAGE_GPU_MIPMAP_COMPLETE']" | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android28.0")] | ||
UsageGpuMipmapComplete = 67108864, | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/field[@name='USAGE_GPU_SAMPLED_IMAGE']" | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android26.0")] | ||
UsageGpuSampledImage = 256, | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/field[@name='USAGE_PROTECTED_CONTENT']" | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android26.0")] | ||
UsageProtectedContent = 16384, | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/field[@name='USAGE_SENSOR_DIRECT_DATA']" | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android26.0")] | ||
UsageSensorDirectData = 8388608, | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.hardware']/class[@name='HardwareBuffer']/field[@name='USAGE_VIDEO_ENCODE']" | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android26.0")] | ||
UsageVideoEncode = 65536 | ||
} |
24 changes: 24 additions & 0 deletions
24
src/Mono.Android/Android.Telephony.Mbms/StreamingService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using Android.Runtime; | ||
|
||
namespace Android.Telephony.Mbms; | ||
|
||
public partial class StreamingService | ||
{ | ||
// Metadata.xml XPath field reference: path="/api/package[@name='android.telephony.mbms']/class[@name='StreamingService']/field[@name='STATE_STALLED']" | ||
[Register ("STATE_STALLED", ApiSince = 28)] | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android28.0")] | ||
[global::System.Obsolete (@"This constant will be removed in a future version. Use Android.Telephony.StreamingState enum directly instead of this field.", error: true)] | ||
public const int StateStalled = 3; | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.telephony.mbms']/class[@name='StreamingService']/field[@name='STATE_STARTED']" | ||
[Register ("STATE_STARTED", ApiSince = 28)] | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android28.0")] | ||
[global::System.Obsolete (@"This constant will be removed in a future version. Use Android.Telephony.StreamingState enum directly instead of this field.", error: true)] | ||
public const int StateStarted = 2; | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.telephony.mbms']/class[@name='StreamingService']/field[@name='STATE_STOPPED']" | ||
[Register ("STATE_STOPPED", ApiSince = 28)] | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android28.0")] | ||
[global::System.Obsolete (@"This constant will be removed in a future version. Use Android.Telephony.StreamingState enum directly instead of this field.", error: true)] | ||
public const int StateStopped = 1; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using Android.Runtime; | ||
|
||
namespace Android.Telephony; | ||
|
||
public partial class MbmsDownloadSession | ||
{ | ||
// Metadata.xml XPath field reference: path="/api/package[@name='android.telephony']/class[@name='MbmsDownloadSession']/field[@name='STATUS_ACTIVELY_DOWNLOADING']" | ||
[Register ("STATUS_ACTIVELY_DOWNLOADING", ApiSince = 28)] | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android28.0")] | ||
[global::System.Obsolete (@"This constant will be removed in the future version. Use Android.Telephony.Mbms.DownloadStatus enum directly instead of this field.", error: true)] | ||
public const int StatusActivelyDownloading = 1; | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.telephony']/class[@name='MbmsDownloadSession']/field[@name='STATUS_PENDING_DOWNLOAD']" | ||
[Register ("STATUS_PENDING_DOWNLOAD", ApiSince = 28)] | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android28.0")] | ||
[global::System.Obsolete (@"This constant will be removed in the future version. Use Android.Telephony.Mbms.DownloadStatus enum directly instead of this field.", error: true)] | ||
public const int StatusPendingDownload = 2; | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.telephony']/class[@name='MbmsDownloadSession']/field[@name='STATUS_PENDING_DOWNLOAD_WINDOW']" | ||
[Register ("STATUS_PENDING_DOWNLOAD_WINDOW", ApiSince = 28)] | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android28.0")] | ||
[global::System.Obsolete (@"This constant will be removed in the future version. Use Android.Telephony.Mbms.DownloadStatus enum directly instead of this field.", error: true)] | ||
public const int StatusPendingDownloadWindow = 4; | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.telephony']/class[@name='MbmsDownloadSession']/field[@name='STATUS_PENDING_REPAIR']" | ||
[Register ("STATUS_PENDING_REPAIR", ApiSince = 28)] | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android28.0")] | ||
[global::System.Obsolete (@"This constant will be removed in the future version. Use Android.Telephony.Mbms.DownloadStatus enum directly instead of this field.", error: true)] | ||
public const int StatusPendingRepair = 3; | ||
|
||
// Metadata.xml XPath field reference: path="/api/package[@name='android.telephony']/class[@name='MbmsDownloadSession']/field[@name='STATUS_UNKNOWN']" | ||
[Register ("STATUS_UNKNOWN", ApiSince = 28)] | ||
[global::System.Runtime.Versioning.SupportedOSPlatformAttribute ("android28.0")] | ||
[global::System.Obsolete (@"This constant will be removed in the future version. Use Android.Telephony.Mbms.DownloadStatus enum directly instead of this field.", error: true)] | ||
public const int StatusUnknown = 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.