mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
clover: Fix build on i386.
This commit is contained in:
parent
fcab4d4a34
commit
b70736fa82
1 changed files with 2 additions and 1 deletions
|
|
@ -146,7 +146,8 @@ _cl_device_id::max_threads_per_block() const {
|
|||
|
||||
std::vector<size_t>
|
||||
_cl_device_id::max_block_size() const {
|
||||
return get_compute_param<uint64_t>(pipe, PIPE_COMPUTE_CAP_MAX_BLOCK_SIZE);
|
||||
auto v = get_compute_param<uint64_t>(pipe, PIPE_COMPUTE_CAP_MAX_BLOCK_SIZE);
|
||||
return { v.begin(), v.end() };
|
||||
}
|
||||
|
||||
std::string
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue