Displaying 20 results from an estimated 39 matches for "context_create".
2011 Jun 21
0
Attempting to boot Unity3D
...rce_check_usage Unhandled usage flags 0x8.
fixme:d3d:resource_check_usage Unhandled usage flags 0x8.
err:wgl:internal_SetPixelFormat Couldn't set format of the window, returning failure
err:d3d:context_set_pixel_format Failed to set pixel format 15 on device context 0x6fc, last error 0.
err:d3d:context_create Failed to set pixel format 15 on device context 0x6fc.
err:d3d:WineD3D_ChoosePixelFormat Can't find a suitable iPixelFormat
err:wgl:internal_SetPixelFormat Couldn't set format of the window, returning failure
err:d3d:context_set_pixel_format Failed to set pixel format 15 on device context 0...
2011 Jan 11
0
D3D problem... Mac Specific?
...] <Error>: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
Then the loop goes on...
Code:
set off screen: invalid drawable
err:d3d:context_set_current Failed to make GL context *CONTEXTADDR* current on device context 0x6bc, last error 0.
err:d3d:context_create Cannot activate context to set up defaults
Where "CONTEXTADDR" changes with each iteration.
If this is not the first iteration of the loop, this is followed by:
Code:
err:d3d:context_release Failed to restore GL context *PREVCONTEXTADDR* on device context 0x6bc, last error 0x7d0.
Wh...
2015 Dec 07
2
[mesa v2 5/9] nouveau: fix screen creation failure paths
...\
> do { \
> NOUVEAU_ERR(str, err); \
> - nv30_screen_destroy(pscreen); \
> - return NULL; \
> + screen->base.base.context_create = NULL; \
> + return &screen->base; \
> } while(0)
>
> struct nouveau_screen *
> nv30_screen_create(struct nouveau_device *dev)
> {
> - struct nv30_screen *screen = CALLOC_STRUCT(nv30_screen);
> + struct nv30_screen *sc...
2015 Dec 07
1
[mesa v2 5/9] nouveau: fix screen creation failure paths
...\
>>> NOUVEAU_ERR(str, err); \
>>> - nv30_screen_destroy(pscreen); \
>>> - return NULL; \
>>> + screen->base.base.context_create = NULL; \
>>> + return &screen->base; \
>>> } while(0)
>>>
>>> struct nouveau_screen *
>>> nv30_screen_create(struct nouveau_device *dev)
>>> {
>>> - struct nv30_screen *screen = CAL...
2011 Oct 18
0
FSX menus
...EnumDisplayDevicesW ((null),0,0x32f184,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x32f14c,0x00000000), stub!
err:wgl:internal_SetPixelFormat Invalid operation on root_window
err:d3d:context_set_pixel_format Failed to set pixel format 1 on device context 0x220, last error 0.
err:d3d:context_create Failed to set pixel format 1 on device context 0x220.
err:d3d:WineD3D_ChoosePixelFormat Can't find a suitable iPixelFormat
err:wgl:internal_SetPixelFormat Invalid operation on root_window
err:d3d:context_set_pixel_format Failed to set pixel format 1 on device context 0xbd4, last error 0.
err:d3...
2015 Nov 27
0
[mesa v2 5/9] nouveau: fix screen creation failure paths
..._SCREEN_INIT(str, err) \
do { \
NOUVEAU_ERR(str, err); \
- nv30_screen_destroy(pscreen); \
- return NULL; \
+ screen->base.base.context_create = NULL; \
+ return &screen->base; \
} while(0)
struct nouveau_screen *
nv30_screen_create(struct nouveau_device *dev)
{
- struct nv30_screen *screen = CALLOC_STRUCT(nv30_screen);
+ struct nv30_screen *screen;
struct pipe_screen *pscreen;...
2015 Dec 07
0
[mesa v2 5/9] nouveau: fix screen creation failure paths
...gt;> do { \
>> NOUVEAU_ERR(str, err); \
>> - nv30_screen_destroy(pscreen); \
>> - return NULL; \
>> + screen->base.base.context_create = NULL; \
>> + return &screen->base; \
>> } while(0)
>>
>> struct nouveau_screen *
>> nv30_screen_create(struct nouveau_device *dev)
>> {
>> - struct nv30_screen *screen = CALLOC_STRUCT(nv30_screen);
>...
2014 Jan 10
2
[PATCH] nouveau: add framebuffer validation callback
...5 @@ fail:
return NULL;
}
+static bool
+nv04_is_rt_format_supported(gl_format format)
+{
+ switch (format) {
+ case MESA_FORMAT_XRGB8888:
+ case MESA_FORMAT_ARGB8888:
+ case MESA_FORMAT_RGB565:
+ return true;
+ default:
+ return false;
+ }
+}
+
const struct nouveau_driver nv04_driver = {
.context_create = nv04_context_create,
.context_destroy = nv04_context_destroy,
.surface_copy = nv04_surface_copy,
.surface_fill = nv04_surface_fill,
+ .is_rt_format_supported = nv04_is_rt_format_supported,
.emit = (nouveau_state_func[]) {
nv04_defer_control,
nouveau_emit_nothing,
diff --git a/src/me...
2015 Nov 27
13
[mesa v2 1/9] nouveau: bump required libdrm version to 2.4.66
From: Ben Skeggs <bskeggs at redhat.com>
Signed-off-by: Ben Skeggs <bskeggs at redhat.com>
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 4016871..c02ee61 100644
--- a/configure.ac
+++ b/configure.ac
@@ -73,7 +73,7 @@ LIBDRM_RADEON_REQUIRED=2.4.56
LIBDRM_AMDGPU_REQUIRED=2.4.63
LIBDRM_INTEL_REQUIRED=2.4.61
2014 Jan 14
0
[PATCH] nouveau: add framebuffer validation callback
...y want to implement that logic
in the top-level ValidateFramebuffer() hook instead of using a driver
call-back mechanism, because (aside from the bpp limitation) we're going
to expose the same set of formats on all generations.
Thanks.
> const struct nouveau_driver nv04_driver = {
> .context_create = nv04_context_create,
> .context_destroy = nv04_context_destroy,
> .surface_copy = nv04_surface_copy,
> .surface_fill = nv04_surface_fill,
> + .is_rt_format_supported = nv04_is_rt_format_supported,
> .emit = (nouveau_state_func[]) {
> nv04_defer_control,
> nouvea...
2015 Nov 26
9
[mesa 1/9] nouveau: bump required libdrm version to 2.4.66
From: Ben Skeggs <bskeggs at redhat.com>
Signed-off-by: Ben Skeggs <bskeggs at redhat.com>
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 4016871..c02ee61 100644
--- a/configure.ac
+++ b/configure.ac
@@ -73,7 +73,7 @@ LIBDRM_RADEON_REQUIRED=2.4.56
LIBDRM_AMDGPU_REQUIRED=2.4.63
LIBDRM_INTEL_REQUIRED=2.4.61
2015 Dec 16
11
[mesa v3 1/9] nouveau: bump required libdrm version to 2.4.66
From: Ben Skeggs <bskeggs at redhat.com>
v2. forgot bump for non-gallium driver
Signed-off-by: Ben Skeggs <bskeggs at redhat.com>
---
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index b6680d0..965c6f7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -72,8 +72,8 @@ LIBDRM_REQUIRED=2.4.60
2011 Sep 14
0
Star Trek Bridge Commander on Ubuntu 10.04 LTS
...output :
fixme:ddraw:DirectDrawEnumerateExA flags 0x00000007 not handled
fixme:win:EnumDisplayDevicesW ((null),0,0x32e874,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x32e888,0x00000000), stub!
fixme:x11drv:X11DRV_desktop_SetCurrentMode Cannot change screen BPP from 32 to 16
err:d3d:context_create wglSwapIntervalEXT failed to set swap interval 1 for context 0x153230, last error 0x591
fixme:d3d:swapchain_init Add OpenGL context recreation support to context_validate_onscreen_formats
fixme:d3d_surface:surface_load_ds_location No up to date depth stencil location.
fixme:d3d:state_lastpixel Last...
2019 Apr 26
0
Wine release 4.7
...wbemprox/tests: Introduce a helper to check properties.
Henri Verbeet (5):
wined3d: Pass a wined3d_adapter_gl structure to wined3d_adapter_gl_init().
wined3d: Assign "adapter_ops" in wined3d_adapter_init().
wined3d: Don't bother allocating "free_fences" in context_create().
wined3d: Don't bother allocating "free_occlusion_queries" in context_create().
wined3d: Don't bother allocating "free_timestamp_queries" in context_create().
Isira Seneviratne (1):
po: Update Sinhala translation.
Jacek Caban (26):
mshtml: Sup...
2010 May 29
3
Problem Running a game called Gothic
...hange screen BPP from 32 to 16
fixme:d3d:swapchain_init Add OpenGL context recreation support to context_validate_onscreen_formats
err:wgl:internal_SetPixelFormat Invalid iPixelFormat: 104
err:d3d:context_set_pixel_format Failed to set pixel format 104 on device context 0x358, last error 0.
err:d3d:context_create Failed to set pixel format 104 on device context 0x358.
fixme:ddraw:device_parent_CreateSwapChain (0x13a1d4) CreateSwapChain failed, returning 0x8876086a
err:ddraw:IDirectDrawImpl_CreateSurface IDirectDrawImpl_AttachD3DDevice failed, hr = 8876086a
err:msvcrt:demangle_datatype Unknown type a
err:msv...
2013 Aug 10
3
[PATCH 1/4] nouveau: fix number of surfaces in video buffer, use defines
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
The pipe_surface miscount caused issues for my (failed) attempt at getting
vdpau to work with pmpeg.
src/gallium/drivers/nouveau/nouveau_video.h | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/gallium/drivers/nouveau/nouveau_video.h b/src/gallium/drivers/nouveau/nouveau_video.h
index 1d6ced0..be53758
2013 Jul 29
2
[PATCH 1/2] nv30: hook up PMPEG support via nouveau_video, enables XvMC to work
...274;
+
unsigned *fence_map;
unsigned fence_seq;
diff --git a/src/gallium/drivers/nv30/nv30_context.c b/src/gallium/drivers/nv30/nv30_context.c
index bd05042..e872c02 100644
--- a/src/gallium/drivers/nv30/nv30_context.c
+++ b/src/gallium/drivers/nv30/nv30_context.c
@@ -257,5 +257,7 @@ nv30_context_create(struct pipe_screen *pscreen, void *priv)
return NULL;
}
+ nouveau_context_init_vdec(&nv30->base);
+
return pipe;
}
diff --git a/src/gallium/drivers/nv30/nv30_screen.c b/src/gallium/drivers/nv30/nv30_screen.c
index 3d55d6f..40e8b5f 100644
--- a/src/gallium/drivers/nv30/nv3...
2010 Jun 13
3
err:wgl:internal_SetPixelFormat Invalid iPixelFormat:
...hange screen BPP from 32 to 16
fixme:d3d:swapchain_init Add OpenGL context recreation support to context_validate_onscreen_formats
err:wgl:internal_SetPixelFormat Invalid iPixelFormat: 102
err:d3d:context_set_pixel_format Failed to set pixel format 102 on device context 0x470, last error 0.
err:d3d:context_create Failed to set pixel format 102 on device context 0x470.
fixme:ddraw:device_parent_CreateSwapChain (0x12c994) CreateSwapChain failed, returning 0x8876086a
err:ddraw:IDirectDrawImpl_CreateSurface IDirectDrawImpl_AttachD3DDevice failed, hr = 8876086a
wine: Unhandled page fault on read access to 0x0000...
2010 Mar 19
0
Wine release 1.1.41
...ntdll: Fix the ProcessDebugPort information length in NtQueryInformationProcess().
ntdll: Improve support for the ProcessDebugPort info class in NtQueryInformationProcess().
kernel32: Implement CheckRemoteDebuggerPresent().
wined3d: Use "gl_info" in some more places in context_create().
wined3d: Add a separate function to set the pixel format in context_create().
wined3d: Store the swapchain instead of the surface in the context.
wined3d: Use the context's window handle in stretch_rect_fbo().
wined3d: Use the context's window handle in IWineD3DSu...
2011 Jul 22
1
Re: Silverlight Application in Wine
...:24 ruchan-ziyas-computer.local wine[916] <Error>:
kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they
are logged.
set off screen: invalid drawable
err:d3d:context_set_current Failed to make GL context 0x1a4718 current on
device context 0x850, last error 0.
err:d3d:context_create Cannot activate context to set up defaults
fixme:d3d9:IDirect3DDevice9Impl_CreateAdditionalSwapChain (0x18de10) call to
IWineD3DDevice_CreateSwapChain failed
err:d3d9:device_parent_CreateSwapChain (0x18de14) CreateAdditionalSwapChain
failed, returning 0x8876086a
err:d3d:IWineD3DDeviceImpl_Release C...