d3d11device: Fix misreading debug message

This commit is contained in:
Seungha Yang 2019-12-02 14:03:04 +09:00 committed by GStreamer Merge Bot
parent 71ae632b25
commit 914d2df79e

View file

@ -776,7 +776,7 @@ gst_d3d11_device_create_texture_internal (GstD3D11Device * device,
hr = ID3D11Device_CreateTexture2D (priv->device, data->desc,
data->inital_data, &data->texture);
if (FAILED (hr)) {
GST_ERROR ("Failed to create staging texture (0x%x)", (guint) hr);
GST_ERROR ("Failed to create texture (0x%x)", (guint) hr);
data->texture = NULL;
}
}