This repository was archived by the owner on Apr 29, 2021. It is now read-only.
File tree 6 files changed +58
-5
lines changed
cmdbufferCanvas/rendering
6 files changed +58
-5
lines changed Original file line number Diff line number Diff line change
1
+ using Unity . UIWidgets . foundation ;
2
+
3
+ namespace Unity . UIWidgets . editor {
4
+ public class WindowConfig {
5
+ public readonly bool disableRasterCache ;
6
+
7
+ public static float MaxRasterImageSize = 4096 ;
8
+
9
+ static bool ? _disableComputeBuffer = null ;
10
+
11
+ public static bool disableComputeBuffer {
12
+ //disable compute buffer by default for now
13
+ get { return _disableComputeBuffer ?? true ; }
14
+ set {
15
+ D . assert ( _disableComputeBuffer == null
16
+ || _disableComputeBuffer == value
17
+ , ( ) => "The global settings of [disableComputeBuffer] cannot be initiated for multiple times!" ) ;
18
+
19
+ _disableComputeBuffer = value ;
20
+ }
21
+ }
22
+
23
+ public WindowConfig ( bool disableRasterCache ) {
24
+ this . disableRasterCache = disableRasterCache ;
25
+ }
26
+
27
+ public static readonly WindowConfig defaultConfig = new WindowConfig (
28
+ disableRasterCache : false
29
+ ) ;
30
+ }
31
+ }
Original file line number Diff line number Diff line change
1
+ using Unity . UIWidgets . editor ;
1
2
using UnityEngine ;
2
3
using UnityEngine . Rendering ;
3
4
4
5
namespace Unity . UIWidgets . ui {
5
6
static partial class CanvasShader {
6
- const bool enableComputeBuffer = false ;
7
-
8
7
const bool enableDebugLog = false ;
9
8
10
9
public static bool supportComputeBuffer ;
@@ -22,7 +21,7 @@ static bool IsShaderSupported() {
22
21
}
23
22
24
23
static void InitShaders ( ) {
25
- supportComputeBuffer = enableComputeBuffer && SystemInfo . supportsComputeShaders && IsShaderSupported ( ) ;
24
+ supportComputeBuffer = ! WindowConfig . disableComputeBuffer && SystemInfo . supportsComputeShaders && IsShaderSupported ( ) ;
26
25
27
26
if ( ! supportComputeBuffer ) {
28
27
DebugAssert ( false , "init default shaders" ) ;
Original file line number Diff line number Diff line change 1
1
using System ;
2
2
using System . Collections . Generic ;
3
+ using Unity . UIWidgets . editor ;
3
4
using Unity . UIWidgets . foundation ;
4
5
using Unity . UIWidgets . ui ;
5
6
using UnityEngine ;
@@ -210,6 +211,10 @@ static bool _canRasterizePicture(Picture picture) {
210
211
return false ;
211
212
}
212
213
214
+ if ( Window . instance . windowConfig . disableRasterCache ) {
215
+ return false ;
216
+ }
217
+
213
218
var bounds = picture . paintBounds ;
214
219
if ( bounds . isEmpty ) {
215
220
return false ;
@@ -223,6 +228,12 @@ static bool _canRasterizePicture(Picture picture) {
223
228
return false ;
224
229
}
225
230
231
+ //https://forum.unity.com/threads/rendertexture-create-failed-rendertexture-too-big.58667/
232
+ if ( picture . paintBounds . size . width > WindowConfig . MaxRasterImageSize ||
233
+ picture . paintBounds . size . height > WindowConfig . MaxRasterImageSize ) {
234
+ return false ;
235
+ }
236
+
226
237
return true ;
227
238
}
228
239
Original file line number Diff line number Diff line change 1
1
using System ;
2
2
using System . Collections . Generic ;
3
3
using Unity . UIWidgets . async ;
4
+ using Unity . UIWidgets . editor ;
4
5
using Unity . UIWidgets . foundation ;
5
6
using UnityEngine ;
6
7
@@ -148,11 +149,12 @@ public int antiAliasing {
148
149
149
150
protected int _antiAliasing = defaultAntiAliasing ;
150
151
151
-
152
152
public Size physicalSize {
153
153
get { return this . _physicalSize ; }
154
154
}
155
155
156
+ public WindowConfig windowConfig = WindowConfig . defaultConfig ;
157
+
156
158
protected Size _physicalSize = Size . zero ;
157
159
158
160
public WindowPadding viewInsets {
Original file line number Diff line number Diff line change 1
1
using UIWidgetsGallery . gallery ;
2
2
using Unity . UIWidgets . engine ;
3
- using Unity . UIWidgets . material ;
4
3
using Unity . UIWidgets . ui ;
5
4
using Unity . UIWidgets . widgets ;
6
5
using UnityEngine ;
You can’t perform that action at this time.
0 commit comments