Lines Matching defs:stream_info

103             && !context->swapchain->device->stream_info.position_transformed)
150 if (!zenable && context->swapchain->device->stream_info.position_transformed)
1285 if ((device->stream_info.use_map & (1 << WINED3D_FFP_DIFFUSE))
1438 && (context->swapchain->device->stream_info.use_map & (1 << WINED3D_FFP_NORMAL)))
3340 device->stream_info.use_map & (1 << (WINED3D_FFP_TEXCOORD0 + coordIdx))
3341 ? device->stream_info.elements[WINED3D_FFP_TEXCOORD0 + coordIdx].format->id
3604 load_tex_coords(context, &device->stream_info, &curVBO, state);
4105 const struct wined3d_stream_info *stream_info, const struct wined3d_state *state)
4119 if (!(stream_info->use_map & (1 << i)))
4152 stream = &state->streams[stream_info->elements[i].stream_idx];
4175 TRACE_(d3d_shader)("Loading array %u [VBO=%u]\n", i, stream_info->elements[i].data.buffer_object);
4177 if (stream_info->elements[i].stride)
4179 if (curVBO != stream_info->elements[i].data.buffer_object)
4181 GL_EXTCALL(glBindBufferARB(GL_ARRAY_BUFFER_ARB, stream_info->elements[i].data.buffer_object));
4183 curVBO = stream_info->elements[i].data.buffer_object;
4189 GL_EXTCALL(glVertexAttribPointerARB(i, stream_info->elements[i].format->gl_vtx_format,
4190 stream_info->elements[i].format->gl_vtx_type,
4191 stream_info->elements[i].format->gl_normalized,
4192 stream_info->elements[i].stride, stream_info->elements[i].data.addr
4193 + state->load_base_vertex_index * stream_info->elements[i].stride));
4207 const BYTE *ptr = stream_info->elements[i].data.addr;
4208 if (stream_info->elements[i].data.buffer_object)
4221 zv_bind_by_element(context, &stream_info->elements[i], device->czvDrawVertices, ptr);
4236 switch (stream_info->elements[i].format->id)
4584 load_numbered_arrays(context, &device->stream_info, state);
4590 load_vertex_data(context, &device->stream_info, state);
4612 transformed = device->stream_info.position_transformed;
4930 const struct wined3d_stream_info *stream_info = &context->swapchain->device->stream_info;
4933 if (!state->index_buffer || !stream_info->all_vbo)