Questions tagged [rendering]
The rendering tag has no summary.
24 questions
3
votes
0
answers
117
views
How to implement introspection of user-defined data in my software renderer
I am in the process of writing my own software renderer. I am currently working on setting up a shader system that allows users of the renderer to create their own Vertex Shader and Fragment Shader. ...
-1
votes
1
answer
212
views
Why do HTML and JS feel slow on smartphones? What could be changed to make them faster? [closed]
HTML rendering and javascript engines are very optimized, so why do they feel slow on smartphones?
It seems that HTML's low performance justified the creation of mobiles "apps" which are ...
1
vote
2
answers
246
views
Should an entity know how to render itself or is it renderers job to figure out how to draw an Entity?
If I have a graph which consists of nodes like this:
class Graph
{
public:
...
int32_t width();
int32_t height();
const Node * getNode(int32_t height, int32_t width)...
1
vote
1
answer
301
views
Server side rendering of third party updated html components
Say I am wanting to include a third party HTML component in my site...
I know that I can simply include a <script> tag to pull in the component on the client's side; however because I do not ...
0
votes
1
answer
167
views
What could cause a bug to be "Person-Dependent"?
This is quite theoretical, and I hope it's the right SE site.
A couple of years ago I worked at a company using Maya 2014 (I think that was the version) with a couple of other 3D Artists.
Eventually ...
6
votes
2
answers
410
views
How does the Arabic typographic layout system work at a high level?
I have some Arabic content that is justified according to western conventions.
I justified it because it is justified in ancient sources:
However, the way Arabic text justification works is by ...
3
votes
1
answer
160
views
What's the prefer way to construct a personal blog render system, SSR or prerender or anything else?
I am building a personal blog system. The system is more like a platform, means that not only the admin, but all registered users can post their blogs.
We've decided that using markdown as the blog's ...
1
vote
2
answers
2k
views
Is JavaScript added and executed in parsing or in rendering?
As far as I know, each webpage is created in a two stage process, initiated by a webserver request and ended in a webserver response:
Parsing: markup (Say HTML) is executed as is, or created by ...
-1
votes
1
answer
135
views
What is the best unit of measurement for drawing with user scripts?
I want to make an android app that allows you to write scripts to draw stuff.
Like text, buttons, images... using opengl.
Now, if i have a function that draws an image like this:
drawImage( ...
3
votes
1
answer
3k
views
3D Rendering Engine architecture for multipass rendering
I'm implementing a simple 3D rendering engine for my game, I'm using DirectX11. I created a simple architecture for the rendering engine, with a central rendering system (RenderingSystem class, a ...
3
votes
1
answer
236
views
How to efficiently render objects in a database?
My application is similar to a very simple CAD program. The user can create and modify a database of several thousand, simple 3D objects (e.g. cubes and spheres). Each object has a position, ...
4
votes
2
answers
201
views
Unit testing a software renderer, dealing with coupling due to speed issues
Unit testing is something I love now after forcing myself to do it in projects (and doing it at work) after seeing the massive rewards it offers down the road when refactoring and ensuring things work ...
3
votes
3
answers
2k
views
How is rendering a Word document different from rendering a website? [closed]
Now, it doesn't necessarily have to be Word — for ease of comparison, let's use ODT, which is based on XML — which is pretty similar to HTML. That would, to my mind, make rendering an ODT ...
1
vote
2
answers
358
views
Finite Element Shader
I am working on a geometric wrapper for a space jet exhaust impingement solver. A key part of the solution is determining what the jet can "see" and therefore hit. My model is grouped with nodes or ...
1
vote
1
answer
200
views
Efficient 2d per pixel lighting on Android [closed]
I am trying to create a simple 2d game to learn on my own. My current task is creating a lighting scheme.
My goal is to make the screen appear dark except where I create lights. I have a light class ...