mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[OPENGL32]
- remove useless assert - fix typo in SetDIBitstoDevice call svn path=/trunk/; revision=61546
This commit is contained in:
parent
064fb6f84b
commit
e3dd09553c
1 changed files with 2 additions and 2 deletions
|
@ -204,7 +204,6 @@ sw_fb_renderbuffer_storage(struct gl_context *ctx, struct gl_renderbuffer *rb,
|
||||||
DIB_RGB_COLORS,
|
DIB_RGB_COLORS,
|
||||||
(void**)&srb->swrast.Buffer,
|
(void**)&srb->swrast.Buffer,
|
||||||
NULL, 0);
|
NULL, 0);
|
||||||
assert(srb->hbmp);
|
|
||||||
if(!srb->hbmp)
|
if(!srb->hbmp)
|
||||||
{
|
{
|
||||||
ERR("Failed to create the DIB section for the front buffer, %lu.\n", GetLastError());
|
ERR("Failed to create the DIB section for the front buffer, %lu.\n", GetLastError());
|
||||||
|
@ -554,6 +553,7 @@ DHGLRC sw_CreateContext(struct wgl_dc_data* dc_data)
|
||||||
!_tnl_CreateContext(&sw_ctx->mesa) ||
|
!_tnl_CreateContext(&sw_ctx->mesa) ||
|
||||||
!_swsetup_CreateContext(&sw_ctx->mesa))
|
!_swsetup_CreateContext(&sw_ctx->mesa))
|
||||||
{
|
{
|
||||||
|
ERR("Failed initializing helpers.\n");
|
||||||
_mesa_free_context_data(&sw_ctx->mesa);
|
_mesa_free_context_data(&sw_ctx->mesa);
|
||||||
free(sw_ctx);
|
free(sw_ctx);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -809,7 +809,7 @@ BOOL sw_SwapBuffers(HDC hdc, struct wgl_dc_data* dc_data)
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
fb->bmi.bmiHeader.biWidth,
|
fb->bmi.bmiHeader.biHeight,
|
||||||
fb->backbuffer.Buffer,
|
fb->backbuffer.Buffer,
|
||||||
&fb->bmi,
|
&fb->bmi,
|
||||||
DIB_RGB_COLORS) != 0);
|
DIB_RGB_COLORS) != 0);
|
||||||
|
|
Loading…
Reference in a new issue