By gina.psych - 5/1/2015
Hello,
I received the following error message when trying to run my script and I don't how to address it:
Direct2D Error: 0x8899001d The requested size is larger than the guaranteed supported texture size. Line 729, File win\Direct2DGraphics.cpp
The script is attached.
Thanks Gina
|
By Dave - 5/1/2015
<text instructions> /items= instructions /halign = center /area= (600, 600) /position = (50%, 50%) /fontstyle= ("impact", 30%, true) </text>
You're requesting a fontsize of 30% of the screensize. Given how long the item is, this results in a *huge* area that would have to be drawn. So huge, in fact, that it exceeds the limits any system can guarantee to handle. Reduce the fontsize to a reasonable value and it'll run fine.
|
|