Dataset Viewer
Auto-converted to Parquet Duplicate
TOPIC_TITLE
stringlengths
4
128
CATEGORIES
stringlengths
13
48
POST
stringlengths
0
85.6k
ANSWERS
stringlengths
0
146k
Loading resources in a separate thread problems on some card
Graphics and GPU Programming;Programming
Hi,I'm trying to achieve asynchronous resource loading, i.e. textures, etc. are loaded in a separate thread (Loader) and all the rendering is done in the main thread (Renderer). The target platform is Windows XP or higher.I've seen many threads about this on this forum and I've successfully implemented it on my devel...
> Is the flow OK?Depending on what your loader worker thread does (e.g. whether it also decompressed the texture from some storage format like JPG) it may be a loading time improvement if you had 3rd thread - "file loader" with its queue of files to load.So, the process would go like this (all asynchronous):(1) the m...
Efficient 2D Drawing sorted system
Graphics and GPU Programming;Programming
Hello, the problem I have here is a bit difficult for me to describe so I'll try to be as detailed as I can be. I bolded the important part for those that understand the problem without a back-story.Back-story:Right now I've created an entity management system, every entity can be drawn through its own render() funct...
Using some spatial-partitioning scheme to quickly get a set of visible objects and then sorting the resulting set seems perfectly reasonable to me. I don't see the "pain in the ass" anywhere. Did you try it? ; I recently just did something like this for my engine. Using the spatial system, I quickly grab every dra...
Boost spirit & line/column numbers
General and Gameplay Programming;Programming
I know that boost.spirit has a wrapper-iterator that stores information about the current line and column, but is there a way to store that information during parsing? I need this information to verify some of the arguments (for example if a given font-type exists) in an additional step which I can't do with my spiri...
It's fairly easy:struct FileLocationInfo{std::string FileName;unsigned Line;unsigned Column;};typedef boost::spirit::classic::position_iterator<const char*> ParsePosIter;class ParserState{public:void SetParsePosition(const ParsePosIter& pos){FileLocationInfo fileinfo;fileinfo.FileName = ParsePosition.get_position().f...
Vairous php and mySQL game questions
Networking and Multiplayer;Programming
My other post about php/mySQL seemed to morph into a Q & A session about everything I could think of, so I figured I should start a proper post more suited to that purpose.First of all, I am following this tutorial series pretty closely. This is my first 'online' game attempt and I am not very familiar with php or m...
Why not store your monster data in one table? Normalizing your data like this means you have to perform two JOINs across three tables. It's fine if you want to use PHP and MySQL for this, but I don't think MySQL lends itself particularly well to this problem. ; I think your question falls into the category of desi...
Should I Register The Trademark For My Software?
Games Business and Law;Business
Hi,I have only registered the .com domain name for it right now, should I register the trademark too? What might happen if I don't register the trademark? Will I have to change my software's name and/or domain if someone else register the same name as trademark after the launch of my product?Thanks
The most important thing to do is ensure someone isn't already using that name for a software project (game?) and that there isn't already a trademark registered in the territories you want to sell in. You don't need to register a trademark in order to gain protection - you just need to use it (as in, sell the produc...
[web] Forum post submit button.
General and Gameplay Programming;Programming
I'm having a problem figuring out how to get my submit button to work right, basically the submit button calls a java script function which is suppose to write the post into a database but the only way I know to do this is with php. I tried this though I knew it would not work:<script type="text/javascript">function ...
Use an XMLRequest in &#106avascript to call a 'post.php' file.Personally I would use jquery;Quote:Original post by SteveDeFacto...I'm having a problem figuring out how to get my submit button to work right, basically the submit button calls a java script function which is suppose to write the post into a database but...
Getting My Feet Wet
For Beginners
Well I was wondering if this site was a good place to get started in game design? Basically I just want to help with making a game in my free time. All I can do is some decent 3d modeling. I know nothing about coding. I am just a high school cad student that wants to take things further. I was just kind of hoping to...
Quote:Original post by UnmentionedWell I was wondering if this site was a good place to get started in game design? Yes. It is very good place. If you stick around, I think you'll find that this place is an excellent resource for game development.Quote:Original post by UnmentionedBasically I just want to help with mak...
Gamer's Guilt -- Forgetting your Code?
For Beginners
I am suffering from Gamer's guilt.I spent a month writing a bunch of cool classes and now that they are working and I am moving on to a new phase of my project I find that there are 50 things I wish I had done differently with my code. :(This is new to me since I am working on my 1st "Big" project where I actually ha...
My strategy is to only rewrite something when it is necessary to support new functionality that I want or to fix a bug. ;Quote:Original post by StoryyellerMy strategy is to only rewrite something when it is necessary to support new functionality that I want or to fix a bug.I am being forced to take a similar approa...
AS3 Developers needed for small game
Old Archive;Archive
Hi,We are currently looking for some feelance developers who are fluent in AS3 and potentially know how to use Box 2D to develop some of our games.We are an experienced flash game development company based in Staffordshire but our studio is getting very full so we are looking for people who can demonstarte great AS3 ...
[pygame] Getting a sprite drawn
Engines and Middleware;Programming
My code is as followsimport os, sysimport tracebackimport pygame as pgdef main(): succes = pg.init() if not succes == (6,0): print success screen = pg.display.set_mode((640, 480)) player = Player() group = pg.sprite.Group(player) running = True while running: group.draw(screen) pg.display.f...
You need to define where you want the sprite to be drawn:class Player(pg.sprite.Sprite): def __init__(self): pg.sprite.Sprite.__init__(self) self.image = pg.Surface((200, 200)) self.image.fill((128, 128, 128)) self.rect = self.image.get_rect() self.x = 100 # set the x attribute self.y = 100 # set th...
Books on Circle/Sphere Geometry?
Math and Physics;Programming
Just out of interest, anyone know of good reference books, focusing on circle and sphere geometry calculations? Bit like a formula cookbook! Suggestions appreciated. :)
If a book on spheres does exist, it would likely just be a pamphlet. The only query I've ever had to worry about is to see if a point was on or in an ellipsoid.I'm sure books on analytic geometry as a subject are all over the place. (Google it, I got many results.) I have my doubts on books just covering spheres, tho...
Deferred rendering and antialiasing
Graphics and GPU Programming;Programming
I'm thinking of switching to deferred rendering for my game, and this gave me an idea...Say we lay out the G-buffer and we use deferred rendering to calculate only the lighting, and saving it into an HDR buffer. We can perform bloom in that buffer if we want. After that, we do only one additional pass, rendering the ...
That's almost how light-pre-pass works, which is becoming popular on consoles now-a-days for deferred+MSAA =DYou create a GBuffer with depth, normals (and spec-power if you can fit it in), then use that to generate a Lighting Buffer (RGB = Diffuse light, A = specular). To keep the buffers small, you don't get properl...
Game Making Tool
For Beginners
HI forum , I am new to game programming.I want to prepare an Game making tool software, like Game Maker , Multimedia fusion 2 etc. for this i made search on google i found many game engines . some are with source code. but i am not able to execute those to check whether the code useful to me or not .the game software...
I don't undestand.You want to make a kit?Or you want a kit to make a game?Don't go making an engine or a kit if you have never even made a game. ; Do you want to know HOW to develop games? what tools to use? there are many, but theese are free and fully functional.Here is a software do develop c++ applications/ ga...
Sending large data through TCP winsock
Networking and Multiplayer;Programming
I've been busy with Winsock for a while now, creating a program that sends snapshots of the desktop through a socket to the client.Everything works when I'm trying to send small packets of data through the socket, stitching the packets back together works! This means I can send small packets of data (the rectangle of...
Do not use "asynchronous" or "event" sockets in WinSock. Both models are inefficient and full of problems. Instead, use either good-old select(), or tie socket operations to an I/O completion port.; I just wished I heard that a bit earlier. I guess I'll be recoding the entire thing over the next couple of days, than...
What books did developer read for game development in the 1990s?
For Beginners
I want to make a game But I wonder how game developers worked in the 1990s, how they made games, how they learning before the Internet became as widespread as it is today. etc.how do they know how to build game mechanics as character ability power up system?how they know to reverse engineering game competitor company.w...
As far as I know (not being a programmer myself), books on the subject started appearing in the early 2000s. Up to that point, it was “learn by doing” and tips from one another. ;The first book that came to mind was Tricks of the Game-Programming Gurus: Lamothe, Andre, Ratcliff, John, Tyler, Denise: 9780672305078: Amaz...
Choosing a career in AI programmer?
Games Career Development;Business
Hello everyone, my name is Ramon Diaz; I am currently studying Game development and programming at SNHU. I have taken the initiative to learn about a professional career in AI programming. I have a lot of gaps in my development in the short term. I have blueprint experience with AI but not enough to choose a career in ...
Entry level? Know your algorithms, it will help you at interviews. If you have made demos it can help you get jobs, but the market is wide open right now and should be relatively easy to find work for the foreseeable future. Overall, it reads like you are on the right path. When you graduate and start looking for work,...
Newbie desperate for advice!
Games Business and Law;Business
Hi allI'm new to the game development community and need some advice.I've created 2 educational games with a simple idea but are sufficiently challenging for all ages. These could be played on pcs or phones.Is it worth patenting any parts of the games?What would be the best way to monetize?How should I market the games...
hendrix7 said:I'm new to the game development communityReally? Your profile shows that you've been a member here since 2004, and your last activity was in 2007, asking about raycasting.hendrix7 said:Is it worth patenting any parts of the games?Probably not. Expensive and there will be hurdles, and possible lawsuits aft...
Hi I'm new. Unreal best option ?
For Beginners
Hallo everyone. My name is BBCblkn and I'm new on this forum. Nice to virtually meet you 🙂. One of my biggest dreams is to make my own videogame. I love writing design as in text on how my dream game would be. Now I got no skills to create it. But who knows what life will bring. Is Unreal the best program to have fun ...
BBCblkn said:My name is BBCblknI am truly sorry for you. Even Elons daughter has a better name than that.BBCblkn said:Is Unreal the best program to have fun with an experience ?Give it a try, but it's not meant for total beginners.Starting small always is a good idea. 2D is easier than 3D. You could try GameMaker, lear...
How to publish a book?
GDNet Lounge;Community
Hello, So, over the holidays I finished my 1st book. Do any of yall writer types know where I can find:an editorpublisherIt's like 99% done, just need to know what to do next. Also, it's cross genre, so it doesn't necessarily fit the standard model.
You've given nowhere near enough information to get a final answer, but I can suggest next steps for you. (For background, I've worked as an author, co-author, editor, and ghostwriter on 9 books so far.)Publishing is a business deal. You need to figure out what business services you need.Do you even need a publisher? D...
First-person terrain navigation frustum clipping problem
General and Gameplay Programming;Programming
I am trying to develop first-person terrain navigation. I am able to read a terrain and render it as well as to move around the terrain by interpolating the location of the camera every time I move around. The main problem I have is that depending on the terrain, i.e. moving on a sloping terrain, the near plane clips m...
I believe this can aways be an issue. I mean if you are clipping to a near plane and that plane passes through geometry, it has to do something. That being said you technically don't have to clip to a near plane at all, however many graphics APIs require it. Another other thing to consider is once you have collision ...
strange speed problem
For Beginners
I was tinkering with code for an SFML C++ project and suddenly everything except my avatar started moving extremely slowly. I looked at the performance tab and I had plenty of memory and cpu. I tried for hours removing everything and starting and stopping the program but nothing would speed it up. I didn't notice any...
Could you tell us what was running slow?if it was your computer, just try a restart your computerif it was your IDE, first try to restart the IDE, else: restart your computerassainator
[.net] vb.net logger question
General and Gameplay Programming;Programming
heey all,At the moment i have a logger* in my program. (* I don't know what it name is, it writes all actions to a file.)The only problem is: The data is only written to the file when it is closed properly. (streamWriter.close() (replace streamWriter with var name)) This is done when the application is end's as it sh...
First quick answer:Use the Flush method after each Write. That will solve your problem.Second answer:Have a look at the Tracing classes in .NET. There is a class that will do all of this for you by simply configuring it. ; Another solution is to use exception handling, by using the Try/Finally statements:logger = ...
[Solved]My model is rendered one half from the front and the other half from the back
For Beginners
Hi i made a human face and when i render it i saw one half of the face from the front and the other half from the back, here is a capture changing from z to -z the eye vector:http://img696.imageshack.us/g/57765909.png/[Edited by - jor1980 on December 28, 2009 5:09:32 PM]
Are the normals on half the head reversed? Possibly during mirroring? ;Quote:Original post by DerangedAre the normals on half the head reversed? Possibly during mirroring?In my FVF i didn´t use normals, here i leave you the code to you to see if there are something wrong.Imports Microsoft.DirectX.Direct3DImports Mi...
Visual Studio Macros for the Game Programmer
Old Archive;Archive
Comments for the article Visual Studio Macros for the Game Programmer
Excellent article, very useful and inspiring. Thank you! ; Nice introduction to Visual Studio Macros. I've never done anything with them before but I'm really planning to after reading this article.I just tried your example:Sub Signature() Dim sel As TextSelection = DTE.ActiveDocument.Selection sel.Insert("MikeC...
sfml mouse coordinate problem
For Beginners
heey all,lately i was trying to use the mouse more in my app. I use sfml to handle input, graphics and display.i'm using the following code, the X code display's properly, tough the Y code stays at 512. even stranger is that the windows is only 500 pixels high.....int main(){//create a SFML windowsf::Window App(sf::V...
Looks like you're using the Mouse Button field of the Event, when you should be using the MouseMove field. ; Thanks, that solved the problem.assainator
Render to texture Reply Quote Edit
Graphics and GPU Programming;Programming
Hi guys,I'm new to DirectX, and now i have to render some scene to a texture, and then i will have to work with these texture.I have try to write a function to render a simple Box to a texture. Then i will use this texture to render the box again, using the texture above to this new BoxThis is my code<CODE>void Rende...
1. If you render the box mesh to the screen, rather than to a texture, does it render correctly?2. Do you set the viewport somewhere other than the posted code?3. Do you create the normal render buffer using D3DFMT_A8R8G8B8 also? ; I figured out my mistake when i created D3DXCreateRenderToSurface inside this funct...
2D diagram
Graphics and GPU Programming;Programming
I'm not developing a game, but I haven't been able to get a satisfactory answer elsewhere and I figure this is where the graphics experts are.I need to display a large number (thousands or tens of thousands) of points in 2D space with lines connecting pairs of points. The user needs to be able to zoom (preferably "i...
(thousands or tens of thousands) is n't a big number for 3D rendering, but OpenGL doesnot support 2D rendering originally. If you are sticked to OGL, you can try to extend any of the open src 3D engines. It would take several thousands of lines.With Win Vista/7, maybe You can try the Direct2D. I just read a little of t...
Adding a road to terrain
Graphics and GPU Programming;Programming
How would you go about adding a road to a terrain generated with a heightmap? i tried just creating some triangles and adding a road texture to it, but because my road coordinates are singles(or floats in c#) it can be places anywhere so the terrain pokes through it in some places... I also tried drawing to a texture...
C++ Book
For Beginners
I was wondering what book I should read next after C Plus Plus for Dummies? I am currently reading it and it is a rather confusing book, even with Basic experience. Any advice would be appreciated.
From personal experience, I wouldn't recommend the Dummies books. My Dad was a director (retired recently) at the company that publishes them. He agreed with me over Christmas dinner that they weren't very good (although I guess it depends on the author).I am in a similar position to you on the experience front. I am...
Color Theory Final
GDNet Lounge;Community
Hi, I need your guys help for a color theory final. I have a survey about Game art covers and what kind of emotion they invoke in you, and how the difference might correlate with Rated everybody and rated mature games.It would really help me out :)Part 1:http://www.surveymonkey.com/s/6ZY8HHYPart 2:http://www.surveymo...
Any takers are much appreciated! ; So as a survey taker should I be basing my emotional response only on the colors or on the subject matter and content as well? I tried to just stick to colors during the first survey but I know I have a tendency to look at subject and content just out of habit which may easily bi...
How to design a pseudo 3d game?
For Beginners
Currently, I'm making a 2d platform game in C++ with Box2d for physics.I have an EntityManager class, which is basically an entire instance of the game encapsulated. In addition to updating and drawing entities, it transforms input into commands for the player, plays music, saves the game, etc. When the player enters...
Draw on texture in HLSL
For Beginners
Im new to xna and dont understand some of it so bare with me :P i have a project where i need to draw a road on some terrain. i tried just creating some triangles with a road texture but it didnt work very well because the terrain would poke through in some places, so i decided the best approach would be to draw the ...
Retrieving Window UI graphical components
General and Gameplay Programming;Programming
I'm doing a gpu accelerated ui interface and I want some of the controls to have the same feel as the current Windows theme. I'm wondering how I can do this, or how I can get the images that Windows uses to draw its user interface.
This article should shed some light on the question [smile]
Hex Numbers... O_o
For Beginners
Hex numbers go 0 1 2 3 4 5 6 7 8 9 A B C D E F 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F 20 21 22 23 24 25 26 27 28 29 2A 2B 2C 2D 2E 2F But after 9, what numerical values do the letters have? Is it going 10, 11, 12, 13, 14, 15, 10, 11, etc?
Yes, 0x0A (base 16) equals 10 (base 10); Hex -> Decimal system conversion table:A -> 10B -> 11C -> 12D -> 13E -> 14F -> 15But 10 in hexadecimal means (1 * 16 + 0)=16 in decimal system thus SIXTEEN.The same for 11 in hexadecimal that is (1 * 16 + 1)=16 in decimal system thus SEVENTEEN.In hexadecimal (and ...
Cloth in MMORPG game
For Beginners
Sorry for my bad English.Hello I made my character for my MMORPG game. It doesn't has any cloth so I want to make cloth, shorts, hat, etc. I don't want to bind these in modeling tool. I know I must separate it and bind it when program but if I set cloth position same character when my character playing animation e.g....
I assume you want cloth on your characters, but you are separating it out into another file for the sake of being able to turn random clothing items on and off. The best you can do, if you don't want to simulate it, is to have matching animations for cloth. So, you'd animate the cloth along side every animation for y...
Game Dev Think Tank
Old Archive;Archive
Team name:Game Dev Think TankProject name: none yetBrief description:Hello, my name is Nick Rodriguez. I am looking to put together a think tank of passionate game developers of all different skill-sets. As a group, we will design, develop, and sell video games and video game technology using C++ with DirectX/OpenGL. M...
Programming Language - 3d games
For Beginners
I was wondering what programming language I should learn first if I want to get into programming 3d games.I am pretty new to programming although i do now a little bit of visual basic.net but other then that there is nothing else
If you are on windows C# and XNA Game Studio will work. Very easy setup to use.I would recommend focusing on learning C# first tho. The download for XNAGS and Visual C# express 2008 are both on this link below.XNA GS; C++ is the language that is widely used for 3D game programming. If you go for Java, there's a gr...
Need some advice
Engines and Middleware;Programming
I have started working on my own MMO Engine. I have a working Authentication Server, World Server, Client, AI Client. They all work together and you can have multiple people on the serevr, see each other, and talk to each other. I got discouraged on it when I ran into some problems with getting combat working and so ...
One vote for continue.Best to know exactly how your engine works and fix problems, than trying to find work-arounds for other engines.Looks like if you go down the premade engine route more problems will arise.But hey, might work for you, just thought i'd give my 2 pence.PureBlackSin ; Thanks. I really am thinking...
[HLSL] [XNA] Diffuse light direction doesn't work correctly.
Graphics and GPU Programming;Programming
Hi folks,I am currently trying to implement some simple diffuse lighting into my game and have come across a odd problem.The direction of the light produces incorrect results.Currently I have the following inputs, along with my vertex and pixel shader:struct VertexShaderInput{ float4 Position : POSITION0; float...
Well the "L" vector in your typical diffuse lighting calculations actually refers to a vector that points from your surface towards the light...this is because your normal also points away from the surface. So for a directional light you should actually use the opposite direction you want the light to face. Also on...
Parse a texture type from a text file
Graphics and GPU Programming;Programming
So for the past week I have been doing my best to create a way to load my game from a map file. So far, so good actually, except I have run into one little snag. I am trying to use my text file to tell my game which LPDIRECT3DTEXTURE9 to use, and it will not work. On a related note, I decided to use a third party par...
Quote:Original post by gothiclySo far I have gotten it to use a string that converts to a LPCSTR to get the texture location, but I have no idea of how to get the LPDIRECT3DTEXTURE9 to load... I tried a reinterpret_cast<LPDIRECT3DTEXTURE9>(with an lpcstr) and it returns an error. That's not how you load textures :) Rig...
a* on 3d enviroment
Artificial Intelligence;Programming
Hello,I'm trying to implement A-Star Pahtfinding on 3D enviroment (triangles).I have a set of triangles (a triangle represents a NODE) with connections between them (neighbours) all setup and ok.Now, to make it more faster i've created a NxN matrice in wich i have precalculated distances between center's of the trian...
Hi, you may want to place your code between the source tags (http://www.gamedev.net/community/forums/faq.asp#tags). ;Quote:Original post by leet bixHi, you may want to place your code between the source tags (http://www.gamedev.net/community/forums/faq.asp#tags).all done. thank you. please escuse me , im new to thi...
AP Computer Science?
Games Career Development;Business
Hey there everyone. Merry Christmas. I just thought I'd ask for some information on AP Computer Science seeing as my school does not offer it but one is allowed to take the exam without taking the class and I may self-teach ( I wouldn't take the exam until Spring of 2011 as I'd have to learn everything in a very smal...
Have you checked the official description? Here it is for Computer science A: http://www.collegeboard.com/student/testing/ap/sub_compscia.htmlThe exam isn't too hard. I didn't take it, but I had planned on it. It turns out my school didn't do the necessary paperwork on time to order the exams and didn't tell me until...
C++ Struct constructor problem
General and Gameplay Programming;Programming
Hello all,I have a little problem that's been nagging me, and I'm hoping somebody could shed some light on it. I have a simple struct declared/defined as so:struct XFileInfo{XFileInfo(): is32BitFloat( false ),isText( false ){}bool is32BitFloat;bool isText;};And then I create an instance of this struct on the stack w...
XFileInfo info(); <-- Function declaration (note: declaration, not definition).XFileInfo info; <-- variable declaration and construction. ; This line:XFileInfo info();This is a function declaration. C++ allows functions to be declared inside other functions. You can rewrite it as:XFileInfo info;Which is does call ...
Mobile Gaming ISV Kickoff Event at CES
Your Announcements;Community
On behalf of Connectsoft and event co-hosts Dell and Broadcom, we would like to invite game and mobile application developers to our ISV Kickoff Event at the Consumer Electronics Show in January to introduce a new wireless application platform. Please contact me at the following if you are interested in attending an...
[win32/c++] Displaying Bitmap causes crash
General and Gameplay Programming;Programming
HelloI have made a simple win32 application that converts temperatures.Problem:I am displaying a bitmap image in a static control that is scaled usingStretchBlt(). But when the application runs it goes into an infinite loop,doesn't display the bitmap & crashes.I believe the problem is either to do with the static win...
Give us some hints :)What information does the crash give you? Accessing an invalid memory location? If so, what location? What line does the crash point to?Also, try putting your code in [source] .. [/source] tags. ; That is not the correct way to use SS_BITMAP. Currently, you are trying to render the bitmap in t...
Where do I get an artist from?
2D and 3D Art;Visual Arts
Hi!I've made a nice flash game, and now looking for graphics.I intend to pay.It's more about user interface graphics since it's a card game, so, no sprites whatsoever.Note that this is probably going to be considered "version one" graphics, and more work might come afterwards.Is there a recommended website/company/ar...
If you're looking to recruit an artist, you'll want to post in the Help Wanted forum while following the mandatory posting template. Good luck! ; You can also try the pixeljoint forums. They have a ton of people who specialize in pixel art.I don't know what type of game you've made however...http://pixeljoint.com...
Isometric engine
Graphics and GPU Programming;Programming
Hello,I have recently been working on a isometric engine in XNA. I have rendering working but on large maps (on my computer at about 500x500) is starts getting sluggish. The problem is the fact that all tiles are drawn regardless of whether they are on the screen.Right now I am looping through the entire array of til...
You could implement some hierarchy like a quadtreeThis way, at the top level, you'll have 4 nodes to test for visibility, and rejecting one will reject 1/4 of all the tiles in your worldAlternatively, and probably a better approach is to calculate the tile at the top-left and bottom-right of the screen, and loop over...
Problems rendering to a surface
Graphics and GPU Programming;Programming
I'm porting my 2D game engine from SDL/OpenGl to DirectX 9.0c. I need to be able to create bitmaps and blit stuff on them, so I figure I need to render to a surface.I'm using the ID3DXRenderToSurface interface to handle the details about rendering. Problem is, this is VERY slow. I suppose it happens because my textur...
Anyone? I'm sorta blocked on that issue. ; Render on the D3DPOOL_DEFAULT surface, then copy it to a D3DPOOL_SYSTEMMEM surface yourself when you need it.And clear the surface after setting it before you do any rendering on it to avoid seeing video memory dumps.
C/C++ programmer wanted for 2D SRPG project
Old Archive;Archive
Team NameCurrently untitledProject NameCurrently untitledBrief DescriptionA relatively small 2D fantasy SRPG project influenced by Exile, Fallout, Disgaea, Diablo, the Elder Scrolls.Target AimFree and possibly open source (will be discussed).CompensationExperience and an addition to your portfolio!TechnologyTarget plat...
End of preview. Expand in Data Studio

No dataset card yet

Downloads last month
53