+ 2
Is there a way to run JavaScript Draw functions on a standard Graphics card?
My Laptop is running on a standard Intel HD Graphics card, it gives errors about not being able to render draw () functions or functions like pattern, is there something I could install to remedy this? or a setting I could change? I'm on Windows 10 with 4GB DDR3 L Ram
8 odpowiedzi
+ 5
What functions do you mean?
+ 2
Hmm, JS does not have built in 3D shapes (I think).
+ 1
Draw();
+ 1
standard JavaScript graphic functions
+ 1
gradients work fine, including shapes. just that patterns don't execute and some more advanced graphics like 3D shapes don't execute
0
Image drawing like this
function draw(){
//from image.html
var drawing = document.getElementById("drawing");
var con = drawing.getContext("2d");
var goofyPic = document.getElementById("goofyPic");
con.drawImage(goofyPic, 0, 0, 50, 50);
var image2 = new Image();
image2.src = "andyGoofy.gif";
con.drawImage()
0
it says the browser could not render the image
0
Sorry not 3D I meant TRANSFORMATIONS, But I do get problems with 3D Transformations in CSS