Lines Matching +defs:val +defs:resource

1371         struct wined3d_resource *resource, enum wined3d_resource_type type) DECLSPEC_HIDDEN;
1373 struct wined3d_resource *resource, enum wined3d_resource_type type) DECLSPEC_HIDDEN;
2022 void device_resource_add(struct wined3d_device *device, struct wined3d_resource *resource) DECLSPEC_HIDDEN;
2023 void device_resource_released(struct wined3d_device *device, struct wined3d_resource *resource) DECLSPEC_HIDDEN;
2047 * not even for resource uploads. */
2052 void (*resource_unload)(struct wined3d_resource *resource);
2076 DWORD sharerc_flags; /* shared resource flags */
2077 DWORD sharerc_handle; /* shared resource handle */
2088 void resource_cleanup(struct wined3d_resource *resource) DECLSPEC_HIDDEN;
2089 DWORD resource_get_priority(const struct wined3d_resource *resource) DECLSPEC_HIDDEN;
2090 HRESULT resource_init(struct wined3d_resource *resource, struct wined3d_device *device,
2101 DWORD resource_set_priority(struct wined3d_resource *resource, DWORD priority) DECLSPEC_HIDDEN;
2102 void resource_unload(struct wined3d_resource *resource) DECLSPEC_HIDDEN;
2153 struct wined3d_resource resource;
2182 static inline struct wined3d_texture *wined3d_texture_from_resource(struct wined3d_resource *resource)
2184 return CONTAINING_RECORD(resource, struct wined3d_texture, resource);
2201 struct wined3d_resource resource;
2210 static inline struct wined3d_volume *volume_from_resource(struct wined3d_resource *resource)
2212 return CONTAINING_RECORD(resource, struct wined3d_volume, resource);
2255 struct wined3d_resource resource;
2310 static inline struct wined3d_surface *surface_from_resource(struct wined3d_resource *resource)
2312 return CONTAINING_RECORD(resource, struct wined3d_surface, resource);
2650 struct wined3d_resource resource;
2675 static inline struct wined3d_buffer *buffer_from_resource(struct wined3d_resource *resource)
2677 return CONTAINING_RECORD(resource, struct wined3d_buffer, resource);
2688 struct wined3d_resource *resource;
3202 DECLINLINE(float) copysignf(float val, float sign)
3204 uint32_t u32Val = ((_VBOX_BITVAL_FROM_FLOAT(val) & 0x7fffffff) | (_VBOX_BITVAL_FROM_FLOAT(sign) & 0x80000000));