|
|
gamedev.net
- 2013-06-10 02:29:09
- Similar
- Report/Block
Hello, I'm in doubt about which method should I use to render my terrain. First, some information about my terrain style: - My game came is like Diablo, torchlight type so I dont need to worry about LOD or anything like it. - Currently I divide my terrain into 9 parts, each part is divided using a quad tree, rendering only what I can se...
|
|
|
gamedev.net
- 2013-02-18 15:07:52
- Similar
- Report/Block
I'm experimenting with full screen terrain rendering on the iPad, using a cel shader that goes something like this: 1) render the terrain unto screen with cel lighting 2) render the depth only into a texture 3) render this texture unto the screen using a sobel filter The performance of step 1 alone is currently adequate (although I haven'...
|
|
|
gamedev.net
- 2012-10-04 18:35:49
- Similar
- Report/Block
I am working on a terrain shader where I use interpolated terrain weights in the pixel shader to determine the alpha that I draw the corresponding terrain texture with. Now I would like to apply some noise to the line where one terrain type (like sand) blends into another type (like dirt). However, I do not want noise where the two terrai...
|
|
|
|
gamedev.net
- 2013-02-04 20:15:22
- Similar
- Report/Block
I have a GBuffer shader in use with XNA to produce a typical output of diffuse/albedo, depth and normals. As all the vertex buffers are being batched and sent through with the same world, view and projection matrices for all render targets at once (and have no masked textures), I expected that they will all cover the same screen area for...
|
|
|
gamedev.net
- 2013-03-23 03:02:44
- Similar
- Report/Block
I have a terrain that I created in 3Ds Max, I'm able to add UVW map to result tiled texture, and it works perfectly. Now, I'm looking to use more than one texture in the terrain (for example: grass and stone) instead of one texture, I use the following code: device->SetTexture(0, &grassTexture); device->SetTexture(1, &stoneTexture); devic...
|
|
|
gamedev.net
- 2012-07-25 06:15:12
- Similar
- Report/Block
Hey guys, I managed to render Text on the screen already, but it seems very slow, I used the tutorials from rastertek to create my font engine. How can I make it faster? Should I render in parallel to a texture than rendering that texture on the backBuffer? Or should I use instances to render?...
|
|
|
deviantart.com
- 2013-05-14 11:26:50
- Similar
- Report/Block
As I set the full 360 Spin render going.... heres a little intro image. Going to have to leave this to render overnight, probably about 8 hours to render the full 360. Keyshot.
|
|
|
|
stackoverflow.com
- 2012-02-27 16:55:37
- Similar
- Report/Block
How to render prawn pdf as attachment in ActionMailer? I use delayed_job and don't understand, how could I render pdf-file in action mailer (not in controller). What format should I use?...
|
|
|
gamedev.net
- 2013-02-24 18:58:56
- Similar
- Report/Block
I'm trying to set up deferred lighting in XNA 4. I need to render to 3 multiple render targets. No matter what I do the render target designated as COLOR2 in my pixel shader , the third render target, never renders correctly. I have also loaded tried and tested deferred lighting tutorials and I get the same results....the third RT never r...
|
|
|
stackoverflow.com
- 2012-02-28 16:11:32
- Similar
- Report/Block
I have an executable, which runs fine when i run it manually, and it exists as it should with the expected output. But when i run it with the method bellow, the Process.Exited event is never fired. Notice that i have remembered the Process.EnableRaisingEvents protected override Result Execute(RunExecutable task) var process = new Proc...
|
|
|
gamedev.net
- 2013-05-01 15:51:38
- Similar
- Report/Block
When the player shoot, I want to create a point light on the hit point so I can have something like bullet impact light effect. Here is the code that I tried: D3DLIGHT9 light; light.Type = D3DLIGHT_POINT; light.Diffuse = D3DXCOLOR(255.0, 255.0, 0.0f, 255.0f); light.Position = hitPoint; light.Range = 100.0f; light.Attenuation0 = 50.0f; lig...
|
|
|
stackoverflow.com
- 2011-05-12 13:42:27
- Similar
- Report/Block
I know that default WPF behaviour is to render WPF controls and then on top render WinForms, but are there any way to render WPF on top of WindowsFormsHost? Edit: I have found a temp hack as well. When wpf control overlaps WindowsFormsHost, I change change the size of the WindowsFormsHost (This only works when you have rectangular object...
|
|
|
|
stackoverflow.com
- 2012-07-01 15:20:14
- Similar
- Report/Block
I am using Three.js to render the world to a WebGLRenderTarget. My world does not full the whole screen and thus, has transparent background. The purpose is to provide alpha-channel aware image effects. I render the world to a WebGLRenderTarget buffer I try to post-process this by reading from the buffer and writing to the real screen My...
|
|
|
deviantart.com
- 2013-04-30 13:11:39
- Similar
- Report/Block
Render of Credits: Original Artist Renderer Rules: Credit this render if used Post a link to you work if you used this render (Optional. This is just so I can see your work)...
|
|
|
stackoverflow.com
- 2013-02-21 10:32:03
- Similar
- Report/Block
i am working with fusion chart which renders from a xml file. var chart1 = new FusionCharts('FusionCharts/MSColumn3D.sw f', ' G01 ', '600', '400', '0', '1'); chart1.setXMLUrl(' G01 .xml'); chart1.render(' graph1 '); here i have to render nearly 12 graphs that which have ids from php array like bold items. here chart1, G01 are objects. i...
|
|
|
stackoverflow.com
- 2012-04-15 20:43:08
- Similar
- Report/Block
I recently started using java 3D for games development. I am currently working on an assignment, a simple racing game to be very specific. What you seeing on this screenshot is just a box, i have given road texture to it, and another box representing a car (which will be replaced by an external model later) This is another screenshot from...
|
|
|
sevenforums.com
- 2012-09-30 08:14:13
- Similar
- Report/Block
A poster in another thread posted asking about this new free *Beta* product. I installed it last night after making new system images. I doubt I'd have a need for it, but wanted to see how it played with my other active security, and what kind of resources it uses. I show 1 process and in monitoring it's usage it remains very low. I have...
|
|
|
stackoverflow.com
- 2012-02-18 03:13:38
- Similar
- Report/Block
I have three different ways to initialize and render a view and its subviews, and each one of them has different problems. I'm curious to know if there is a better way that solves all of the problems: Scenario One: Initialize the children in the parent's initialize function. This way, not everything gets stuck in render so that there is l...
|
|
|
|
stackoverflow.com
- 2013-04-12 01:08:26
- Similar
- Report/Block
I want to render OptiX Buffer object to WPF D3DImage. Following link is my original reference. http://msdn.microsoft.com/en-us/library/ cc656710.aspx On C++ side, I am able to make IDirect3DSurface9 as render target and render using IDirect3DDevice9.drawPrimitive but haven't come out a way to make OptiX render. OptiX provide interop to D3D...
|
|
|
gamedev.net
- 2013-04-15 15:34:50
- Similar
- Report/Block
I've got basic shadow mapping working in my game right now and I'd like to sort out a few issues - the biggest being that I am trying to project the shadow of a small object onto a large terrain, which should also self-shadow. So, I need to create a cascaded shadow map (I think!) So what's the process? Do I need to loop through each casca...
|
|
|
stackoverflow.com
- 2013-02-27 07:04:12
- Similar
- Report/Block
I have a and a h:commandLink (link is basically a image).Now I want that on mouseover event , Then link should be render (render='true') and on mouseout event, it gets removed render='false' But I am unable to create the logic that How can I do this with these events as the approach I am using is To set the values of bean true and fals...
|
|
|
|
gamedev.net
- 2012-11-15 04:21:37
- Similar
- Report/Block
I have been having issues 'building' a texture from several others. At first I thought I needed to 'blit' one texture upon the other, then I realized, I need to 'render' onto a texture. So , I have my src textures, and I render them onto my destination texture, this works great, until I then try to use that destination texture, and its to...
|
|
|
stackoverflow.com
- 2013-05-09 11:20:17
- Similar
- Report/Block
I am trying to get a java Process object by using C#. The thing is i have several java Processes running on my computer. Following is the way i chose to get Processes: Process[] processes = Process.GetProcessesByName("java"); foreach(Process proc in processes){ //I need a filter here to get the correct process. The java Process is also c...
|
|
|
deviantart.com
- 2013-01-31 04:26:25
- Similar
- Report/Block
{Important:} I did not create this render. Rending an image means getting rid of the background, and turning it to a PNG file. All credits go to original maker.
|
|
|
|
stackoverflow.com
- 2012-07-02 01:45:24
- Similar
- Report/Block
Right now I'm running a process within GNU screen. Screen is started with the command screen -dmS screenname and the attached with screen -r screenname . A process is started in the screen session, and is killed after some time. How would I have the screen terminate when the process inside has ended? Note: I wouldn't prefer a loop, so I'...
|
|
|
stackoverflow.com
- 2012-03-13 11:09:38
- Similar
- Report/Block
I work on a project, where a process starts a console app on another thread and then it continues to its previous flow. I have attached the original process to the debugger, but I can't do that with the console app process, as that process doesn't get listed in the 'Attach to process' list. How can I debug the console app?...
|
|
|
deviantart.com
- 2013-04-10 00:27:40
- Similar
- Report/Block
Kirito and Asuna render. original: [link] Render belongs to me.
|
|
|
|
darjadida.com
- 2013-06-10 12:12:32
- Similar
- Report/Block
Vente Terrain à Fakharine Annaba mise vente d'un terrain d(une surface de 96 m² .avec un acte de propriété. terrain non accidenté. pour effectuer une visite contactez notre agence immobouleftour .
|
|
|
slando.kh.ua
- 2013-04-10 09:29:51
- Similar
- Report/Block
В продаже Армейские сандали All Terrain Suede Sandals (All Terrain - досл. пер. - для любой местности) Британской армии. Оригинал Верх - замша (регулируется 3-мя липучками). Подошва - 2-х слойная резина (нижний слой - прочная резина с отличными свойствами сцепления, верхний слой - мягкая резина об... http://kharkov.kha.slando.ua/obyavleni.. .
|
|
|
darjadida.com
- 2013-02-21 14:35:54
- Similar
- Report/Block
Vente Terrain à Boumerdes Boumerdes boumerdes : vend terrain sup 252m2(14m2/18m2) .bien situé .2 façade avec acte livret foncier prix : 08 u/m2/ferme...
|
|
|
|
darjadida.com
- 2013-05-20 14:19:22
- Similar
- Report/Block
Vente Terrain à Hasi mameche Mostaganem terrain de 1100 m²double façades avec acte et livret (clôture + portail) 12000 da m² situé route mameche...
|
|
|
sciax2.it
- 2013-06-07 14:51:47
- Similar
- Report/Block
Ecco a voi una piccola raccolta di render e qualche stock fatta da me utilizzando materiale reperito in giro qua e là per internet. Nessuno di questi render o stock è mio, nè è stato prodotto da me. Sciax Render and Stock Pack.rar...
|
|
|
darjadida.com
- 2013-05-15 17:49:20
- Similar
- Report/Block
Vente Terrain à La caroube supérieure(el mousalha) Annaba vente terrain très bien situé, 291 m2 avec magnifique vue sur mer, possibilité de construire un r+1 plus sous sol, bon voisinage pour 1.6 milliard...
|
|
|
|
darjadida.com
- 2013-06-09 09:48:03
- Similar
- Report/Block
Vente Terrain à Chenoua Tipaza chenoua plage,à vendre terrain commercial.02 façades à quelques mètres de la plage.acte,plan et livret foncier. prix:80000 da/m²...
|
|
|
forumconstruire.com
- 2013-06-11 23:40:36
- Similar
- Report/Block
Par hostili - Vu 39 fois - 1 réponse - Sa engage à quoi une réservation de terrain avec un constructeur . Le constructeur qui me demande sa ma dit que sa m'engager en rien ? J'ai peur que je suis obliger de faire construire avec eux si je signe , alors que je leur ait bien dit que j voulais voir leur devis pour que je puisse faire des com...
|
|
|
forumconstruire.com
- 2013-03-06 11:40:19
- Similar
- Report/Block
Par emy01 - Vu 78 fois - 3 réponses - Présentation du projet : construction maison plain pied avec le constructeur clairvie malgré beaucoup de soucis avec le terrain la construction a commencé ! voila les grandes lignes : 9 juillet 2012 : terrain trouvé 27 juillet 2012: signature compromis terrain 4 sept 2012 depot permis construire 1 er...
|
|
|
|
forumconstruire.com
- 2011-07-02 18:34:48
- Similar
- Report/Block
Par carofab - Vu 8054 fois - 50 réponses - Nous venons d'acquérir notre terrain ( lot n°6 ) situé dans le lotissement le clos des pommeirs à Brebières et sommes à la recherche de nos futurs voisins . On vous attend sur le forum . Caroline et Fabrice . ...
|
|
|
domimmo.com
- 2013-06-11 15:55:13
- Similar
- Report/Block
Coquette maison sur un terrain de 400m,tout à l'égout,possibilité de mettre une piscine,petite terrasse,3 chambres,grand séjour,cuisine,salle de bains et wc.Prévoir petits travaux.
|
|
|
domimmo.com
- 2013-06-12 14:47:04
- Similar
- Report/Block
Séverine Saillé 0693.94.64.73 vous présentera ce terrain plat d'une surface utile d'environ 400m². COS non règlementé, zone UC, 9m au gouttières, 13m au faitage.
|
|
|
|
forumconstruire.com
- 2013-06-10 16:03:39
- Similar
- Report/Block
Par missbonita - Vu 159 fois - 5 réponses - Bonjour, Voila mon soucis depuis 4 ans que j'ai fais construire, je commence en avoir ras le bol du terrain avoisinant qui a des herbes hautes jusqu’à 2 m et ma clôture en grillage envahit par les herbes. En effet le proprio qui était d’ailleurs le proprio de mon terrain à garder un morceaux pou...
|