Skip to content

Commit

Permalink
Update release version.
Browse files Browse the repository at this point in the history
Disable some WIP code for release.

git-svn-id: https://www.williamfeely.info/svn/dxgl@683 8a90861a-4eca-46d5-b744-240ff16d0c4d
  • Loading branch information
dxgldotorg committed Aug 24, 2016
1 parent 7bd9eba commit 69d7ea1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ReadMe.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# DXGL 0.5.9
# DXGL 0.5.10
https://www.dxgl.info

## Introduction
Expand Down
2 changes: 1 addition & 1 deletion common/releasever.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

#define DXGLMAJORVER 0
#define DXGLMINORVER 5
#define DXGLPOINTVER 9
#define DXGLPOINTVER 10

#define STR2(x) #x
#define STR(x) STR2(x)
Expand Down
4 changes: 2 additions & 2 deletions ddraw/glRenderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1404,12 +1404,12 @@ BOOL glRenderer__InitGL(glRenderer *This, int width, int height, int bpp, int fu
}
BufferObject_Create(&This->pbo, This->ext, This->util);
BufferObject_SetData(This->pbo, GL_PIXEL_PACK_BUFFER, width*height * 4, NULL, GL_STREAM_READ);
ZeroMemory(&This->state, sizeof(RenderState));
/*ZeroMemory(&This->state, sizeof(RenderState));
This->state.cmd = &This->cmd1;
glRenderer__InitCommandBuffer(This, &This->cmd1, width * height * (NextMultipleOf8(bpp) / 8));
glRenderer__InitCommandBuffer(This, &This->cmd2, width * height * (NextMultipleOf8(bpp) / 8));
BufferObject_Map(This->cmd1.vertices, GL_ARRAY_BUFFER, GL_WRITE_ONLY);
BufferObject_Map(This->cmd1.indices, GL_ELEMENT_ARRAY_BUFFER, GL_WRITE_ONLY);
BufferObject_Map(This->cmd1.indices, GL_ELEMENT_ARRAY_BUFFER, GL_WRITE_ONLY);*/
TRACE_SYSINFO();
return TRUE;
}
Expand Down

0 comments on commit 69d7ea1

Please sign in to comment.