Tagged Questions
WebGL extends the capability of the HTML canvas element to allow it to render accelerated 3D graphics in any compatible web browser.
24
votes
7answers
817 views
How can I implement a FPS view with webgl, inside a browser?
I'm using Copperlicht, and I want to create a usable FPS. The demo controls shows why the browser environment makes this a pain.
In order to implement FPS camera control, you need to track the ...
17
votes
10answers
19k views
What is the coolest WebGL demo you have seen so far? [closed]
What is the coolest WebGL demo you have seen so far?
(One demo per answer please)
13
votes
4answers
830 views
Tools for GLSL editing
I'm looking for some kind of tool to work with GLSL. I want to experiment with shaders in the WebGL application, so what I'm looking for is something like RenderMonkey. As far as I know - RenderMonkey ...
13
votes
19answers
7k views
Unity3D, Torque3D, Google O3D, WebGl…which to choose?
for development of interactive 3d web applications, which engine is recommended?
I am aware that WebGL has been anounced to become standarized for all browsers in the near future (1~2 years).
I am ...
11
votes
7answers
3k views
Deploy WebGL applications as native iOS or Android applications?
Does anyone know of a way in which you can deploy a WebGL app as a native iOS or Android app? Commercial middleware is acceptable, although an open project would be preferable. Thanks.
11
votes
4answers
2k views
Is there a 2d sprite library for webgl?
I am looking to build a 2d game using WebGL. I want the hardware acceleration that WebGL provides and I cannot get this from the 2D canvas context in the canvas tag.
With that said, is there a ...
10
votes
5answers
427 views
Strategy Game Server Concept
I´m planning to create a WebGL-based, realtime strategy game, where players are able to play together. I´ll use Node.js to create the game server, and websockets for realtime connections.
I´ve broken ...
10
votes
3answers
1k views
Using WebGL Shader Language (GLSL) for arbitrary vector mathematics in JavaScript
The WebGL Shader Language (GLSL) is a very powerful tool for multidimensional vector mathematics.
Is there any possibility to use that power from JavaScript (running in web browser) for private ...
9
votes
3answers
2k views
Javascript and WebGL, external scripts
Just curious; How do I place my webgl shaders, in an external file?
Currently I'm having;
<script id="shader-fs" type="x-shader/x-fragment">
#ifdef GL_ES
precision ...
9
votes
2answers
1k views
List of free WebGL resources
I'd like to put together a list of free WebGL resources. These can include books, in-depth tutorials, video resources, etc.
What are some free WebGL resources?
8
votes
2answers
282 views
How does Google Body load so fast?
http://bodybrowser.googlelabs.com/
I know the source of their data and even for real-time use, those meshes and textures are often hundreds of Kb or even several Mb each. Even low-res, it's hard to ...
8
votes
3answers
321 views
What framework is google body browser built upon (if any)?
Can someone help me understand which framework (if any) is Google Body browser developed with?
OK, it's WebGL and Javascript, but are they using some GWT extension that allows WebGL interaction or ...
8
votes
10answers
11k views
7
votes
1answer
115 views
Browser multiplayer network strategy - does this seem like a viable solution?
I'm interested in producing some sort of multiplayer RPG as a purely browser based game, with little or no plugin requirements. Having done quite a bit of research I've arrived at the following plan. ...
7
votes
2answers
1k views
Webgl 2D engine?
Anyone know any good Webgl 2D engines? I've been thinking about using a Webgl 3D engine like Copperlicht but this feels like using a bazooka to swat a fly. I'm mostly interested in using it to develop ...
7
votes
5answers
874 views
Is there a limit of vertices in WebGL?
Three.js says that can't be loaded more than 65k vertices.
In my pure webgl application, it doesn't say anything, but it doesn't show the entire object when I try big objects.
I am figuring out in ...
7
votes
5answers
2k views
WebGL Framework
I'm planning to write a 3D FPS game, based on WebGL.
Should I use some WebGL framework?
What is the most active and popular WebGL library today? Does it support LOD, Heightmaps, COLLADA and some ...
6
votes
3answers
313 views
OpenGl and WebGL
It's a very simple question to learn webGL programming, do I need firstly to learn openGL programming?
any references may help me to start learning webGL?
6
votes
3answers
346 views
Handling Camera-Style Mouse Movement in Javascript (enabling continuous mouse movement)
The idea: I'm creating a simple WebGL script (using mrdoob's wonderful three.js) that allows the user to control a camera in a world of objects. The camera is supposed to simulate traditional first ...
6
votes
4answers
1k views
SceneJS vs Three.JS vs others
Pros and cons anyone? Couldn’t find a complete feature set for three.js library. Though I do know it’s popular and in active development. Maybe someone have done some R&D on WebGL engines and can ...
6
votes
3answers
1k views
Efficient way of drawing in OpenGL ES
In my application I draw a lot of cubes through OpenGL ES Api. All the cubes are of same dimensions, only they are located at different coordinates in space. I can think of two ways of drawing them, ...
6
votes
4answers
1k views
webgl and the power of two problem
I want to use webgl to make a little 3d gallery of flickr photo streams. It looks like webgl only allows square images thats dimensions are a power of two to be used as textures. I need to be able ...
6
votes
3answers
1k views
Is there a WebGL API I can read/learn from?
UPDATE: I got my O3D situation straightened out, but I have yet to settle on one of the libraries listed below. I think I will try a scatter plot in all projects and see which one handles the data ...
6
votes
4answers
3k views
From a Maya scene to a WebGL animation, where to start?
I've got some time, and I really would like to learn to get my Maya animated scenes into WebGL. I'm not sure where to start really. It would be amazing if I could make a Canvas element and place a ...
5
votes
1answer
360 views
WebGL - Textured terrain with heightmap
I'm trying to create a 3D terrain using WebGL. I have a jpg with the texture for the terrain, and another jpg with the height values (-1 to 1).
I've looked at various wrapper libraries (like SpiderGL ...
5
votes
1answer
370 views
Some questions about WebGL
I am learning OpenGL 3.3 and working on an small game engine of mine.
But the more I explore it feels like the offline PC games might become obsolete one day. All the games will be on browser.
I am ...
5
votes
4answers
827 views
How to get started with making a game like Angry Birds on Chrome
http://chrome.angrybirds.com/
The browser based app is said to be done using Canvas 2D or Web GL.
I tried to view source using chrome by using "Inspect Element" button, but my chrome crashes each ...
5
votes
1answer
654 views
How can I animate an object in WebGL (modify specific vertices NOT full transforms)
Okay,
I am new to 3D graphics and I want to animate individual specific vertices in a model (NOT whole model transforms). My script is largely based off the NEHE webgl tutorial. In this tutorial all ...
5
votes
1answer
607 views
How do I use texSubImage2D to show sprites in webgl?
I can display my entire sprite (32x512) successfully with this call to gl.texImage2D:
gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE, image);
It's squished horizontally, like I ...
5
votes
3answers
868 views
Most efficient way to draw multiple identical objects?
I would like to make a game out of many cubes and am planning on putting it on mobile platforms and also on the web using webgl. My problem is when I make a drawelements call per cube I take a hit on ...
4
votes
1answer
113 views
Repeated textures are severely distorted/shaking when rotating camera
I originally asked this question on gamedev, but none of the answers helped to solve problem, and I still have no clue what is the real cause. I didn't see anything about re-posting questions across ...
4
votes
2answers
239 views
webgl vs. 3rd party plugin (unity3d), best option in browser
I have been tasked with rendering and manipulating 3d objects in the browser and really want a robust application. The research that I've done shows two major options here. I can use the new webgl ...
4
votes
2answers
421 views
Is there a working THREE.js API documentation?
I am trying to learn the basics of THREE.js. I have read a couple of tutorial, and I would like to start experimenting. My problem is that I am not able to find any documentation
This is supposed to ...
4
votes
1answer
183 views
Canvas fast texture mapping
I'm making a top-down game with simple 3d graphics. (I'd be happy if it were like gta 2.) I've implemented affine texture mapping that I have found here but it is too CPU intensive.
So my question ...
4
votes
1answer
253 views
Choosing between glMatrix, Sylvester and CanvasMatrix?
Finally, I decided to make my own WebGL 3D engine from the ground up, I begin tutorials from http://www.khronos.org/webgl/ and http://learningwebgl.com and https://developer.mozilla.org/en/WebGL
But ...
4
votes
4answers
365 views
Does javascript provide a high resolution timer?
Question ... Does javascript provide a high resolution timer?
I've written a few game engines from scratch, some in C, some in Java, some in Flash. I always follow the same basic model when it comes ...
4
votes
2answers
203 views
Is it possible to calculate sha256 hashes in the browser using the user's video card, eg. by using WebGL or Flash?
Is it possible to calculate sha256 hashes in the browser using the user's video card, eg. by using WebGL or Flash?
I'm afraid this is all there is to ask, but if more elaboration is needed please do ...
4
votes
4answers
596 views
Is there a WEBGL Manual?
Is there some kind of WebGL manual that lists all the functions etc. ? I tried Google but found nothing.
4
votes
5answers
737 views
Feasibility of MMO 3D game on HTML5/WebGL
I don't know if anyone thought about this but are games like World of Warcraft, Lineage II, or Aion, feasible with a browser front-end through WebGL? What are the things I would have to consider if I ...
4
votes
1answer
311 views
How can I use OpenGL 4 features through WebGL
I want to use some of the features of OpenGL 4 (specifically, tessellation shaders and newer shader language versions) from WebGL. Is this possible, in either a standards-compliant or a hackish way? ...
4
votes
3answers
1k views
View VRML file with WebGL-capable browser
I have a legacy application that generates VRML 1.0 files. I'd like to build a WebGL-based web interface that can display these VRML files. Is there an easy way to do so?
Edit: Specified that they ...
4
votes
1answer
639 views
How to implement this rotating spiral in WebGL? [closed]
Could somebody try to implement given animation into WebGL shader example? It would be great for people learing WebGL like myself.
Source: http://dvdp.tumblr.com/post/2664387637/110109
4
votes
1answer
461 views
Where are all the simple functions gone in WebGL?
glBegin/glEnd and per-vertex drawing with glVertex I can understand that using arrays can be faster.
But where is glLoadIdentity? glMultMatrix? glTranslate? glRotate?
Why do we have to handle all ...
4
votes
3answers
2k views
Render text on canvas using WebGL
I want to render some text on a canvas using WebGL, which API of WebGL should be used?
Note: "text" can be either plain text or HTML snippet with CSS style
4
votes
6answers
1k views
What language should I learn to prepare for WebGL?
I am thinking about making a 3D game with WebGL (just for conceptual purposes, for now), but all I have never done anything in 3D and have only programmed in PHP for the most part. From what I ...
3
votes
1answer
36 views
WebGL render buffers receiving skewed pixel values from shader
I'm rendering a scene of polygons to multiple render targets so that I can perform postprocessing effects. However, the values I'm setting in the fragment shader don't seem to be accurately reflected ...
3
votes
1answer
71 views
ammo.js performance in Google Chrome
A friend and I are developing a game using WebGL and after looking for some physics engines I discovered ammo.js which is a port or the bullet physics library. We implemented a simple example and ...
3
votes
1answer
119 views
Using WebGL or OpenGL ES 2, how do I render the contents of an RBO onscreen?
Using WebGL (which is constrained to the OpenGL ES 2 API), I am successfully rendering to texture and then displaying that texture onscreen. Because it is a texture, it is not being antialiased. If ...
3
votes
2answers
80 views
How to get the 2d coordinates of webgl vertices?
In this tutorial: http://learningwebgl.com/blog/?p=28 we draw a triangle and a square in the 3d space, and I want to get the vertices' x,y coordinates on the canvas.
So I want to get the 2d ...
3
votes
2answers
69 views
How to use multiple canvas contexts?
I would like to use experimental-webgl, and the 2d canvas context also. After I've drawn the 3d objects, I want to draw some 2d objects over it.
How should I do it?