| bio | website | arcsynthesis.org/gltut |
|---|---|---|
| location | Los Angeles, CA | |
| age | 36 | |
| visits | member for | 2 years |
| seen | 2 hours ago | |
| stats | profile views | 7,732 |
I am a game developer with a fairly broad knowledgebase in the fields of animation and graphics, with a touch of AI.
Projects:
- A series of tutorials/eBook on graphics programming
- The Unofficial OpenGL Software Development Kit
- The OpenGL Loader Generator, a much better alternative to GLEW
|
7h |
comment |
Why was the addition of trailing-return-types necessary in C++11? @MarcClaesen: decltype is useful for more than just late-specified return types. |
|
11h |
revised |
OpenGL ES blending with custom antialiasing edited tags |
|
12h |
revised |
how to do customized stencil test in fragment shader added 569 characters in body |
|
12h |
comment |
how to do customized stencil test in fragment shader @Sunf71: "in my experiment I found that discard call is a performance problem" On what hardware? And are you sure you tested it correctly? Are you sure you're not just measuring the time it takes to access the "stencil" texture? Because if you remove the discard, and you don't use the fetched value anywhere, then most compilers will completely optimize out the texture access. |
|
12h |
answered | how to do customized stencil test in fragment shader |
|
12h |
comment |
how to do customized stencil test in fragment shader @Sunf71: Then it's not really a "stencil test"; it's just discarding a fragment based on a value fetched from a texture access. Stenciling is specifically about using values written by one rendered object (visible or not) to prevent writes to those rendered locations. |
|
12h |
comment |
Emacs or Vim for C++ 11 development? @user2384250: "How I'm supposed to start with this 2 editors ? By waiting for a cone of lights that can mark the choosen one ?" By Googling each one and seeing whether it supports what you need. Not by asking other people to do the research for you. |
|
13h |
comment |
Emacs or Vim for C++ 11 development? @user2384250: "I don't think that my question could possibly ignite any flame" You've never talked to anyone who uses Emacs or Vim, have you? Not all of them are as forceful about it, but a fair number of them are rabid haters of the other. |
|
13h |
comment |
Iterating through a list of points in C++ Even if you're good at graphics in other languages, it's still not a good place to start learning C++. |
|
15h |
revised |
AABB and rotating vectors edited tags |
|
15h |
revised |
Android OpenGL to create background edited tags |
|
16h |
comment |
how to do customized stencil test in fragment shader "alliterative" I think you meant "alternative". Also, it's not clear why you need to use a stencil texture to do this. Or why it is you think that the discard call is a performance problem (or if it is a performance problem, that the problem is somehow worse than the texture access itself). |
|
19h |
answered | GLSL, combining 2D and 3D textures |
|
22h |
comment |
Chromatic aberration in C#/Python Stack Overflow is not a code porting service. Try to port the code yourself, then come to us when you have a real problem. |
|
22h |
comment |
Can anyone recommend a concise resource for picking up the maths/physics necessary for implementing lighting in GLSL? "every last "tutorial" assumes that the reader already has a working understanding of the optics and maths necessary for implementing lighting in a GLSL shader" No they don't. I have yet to find a GLSL-based tutorial which covers lighting and yet doesn't talk about the math behind lighting. Some are more detailed than others, but all of them have at least a cursory discussion of the subject. It would be better if you actually asked a question about what you don't understand. SO is not a Google replacement. |
|
22h |
comment |
Why was the addition of trailing-return-types necessary in C++11? @MFH: It's in the C++14 Community Draft. So baring unforeseen consequences, it's probably going to be in C++14. And yes, it could be somewhat painful for documentation. But then again, it means you don't have pointless redundency like using decltype to deduce the type which corresponds exactly to the code in the function. |
|
1d |
comment |
How do I use an initializer list with a base class? @fbrereto: See my edit. |
|
1d |
revised |
How do I use an initializer list with a base class? added 283 characters in body |
|
1d |
comment |
How to load a texture with GL Image? @MaikKlein: Maybe you should stop trying to figure out what code is doing and read an actual tutorial that explains this stuff. |
|
1d |
revised |
How do I use an initializer list with a base class? edited tags |