Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion com.unity.postprocessing/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Fixed
- Remove support for PVRTC format in Unity 6.1 or newer
- Fixed issue with FastSign on WebGL/Safari (IN-71005)
- Fixed compute based effects not supported on OpenGLES
- Fixed issue with FastSign on WebGL/Safari (IN-71005)
- Documentation updates

## [3.4.0] - 2023-12-11
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -850,8 +850,15 @@ public static bool isVREnabled
}

/// <summary>
/// Returns <c>true</c> if the target platform is does not support compute and the selected API is OpenGL,
/// <c>false</c> otherwise.
/// Returns <c>true</c> if the target platform is Android and the selected API is OpenGL, <c>false</c> otherwise.
/// </summary>
public static bool isAndroidOpenGL
{
get { return Application.platform == RuntimePlatform.Android && SystemInfo.graphicsDeviceType != GraphicsDeviceType.Vulkan; }
}

/// <summary>
/// Returns <c>true</c> if the selected API is OpenGLES, <c>false</c> otherwise.
/// </summary>
public static bool isOpenGLES
{
Expand All @@ -863,8 +870,7 @@ public static bool isOpenGLES
}

/// <summary>
/// Returns <c>true</c> if the target platform is WebGL,
/// <c>false</c> otherwise.
/// Returns <c>true</c> if the target platform is WebGL, <c>false</c> otherwise.
/// </summary>
public static bool isWebNonWebGPU
{
Expand Down